Home
last modified time | relevance | path

Searched refs:CurArg (Results 1 – 3 of 3) sorted by relevance

/openbsd-src/gnu/usr.bin/cvs/vms/
H A Dfilesubr.c821 static int CurArg; variable
850 for (i=0; i<CurArg && strcmp(ArgvList[i],fname)!=0; ++i) { in ew_add_file()
853 if (i==CurArg && CurArg<MaxArgs) { in ew_add_file()
854 ArgvList[CurArg++] = strdup(fname); in ew_add_file()
856 return ArgvList[CurArg-1] != 0; /* Stop if we couldn't dup the string */ in ew_add_file()
959 CurArg = 0; in expand_wild()
969 if (CurArg < MaxArgs) { in expand_wild()
970 ArgvList[CurArg++] = strdup(arg); in expand_wild()
980 if (num <= 0 && CurArg < MaxArgs) { in expand_wild()
981 ArgvList[CurArg++] = strdup(arg); in expand_wild()
[all …]
/openbsd-src/gnu/llvm/llvm/include/llvm/Option/
H A DOption.h221 std::unique_ptr<Arg> accept(const ArgList &Args, StringRef CurArg,
225 std::unique_ptr<Arg> acceptInternal(const ArgList &Args, StringRef CurArg,
/openbsd-src/gnu/llvm/llvm/lib/Option/
H A DOption.cpp235 std::unique_ptr<Arg> Option::accept(const ArgList &Args, StringRef CurArg, in accept() argument
239 ? std::make_unique<Arg>(*this, CurArg, Index) in accept()
240 : acceptInternal(Args, CurArg, Index)); in accept()