Home
last modified time | relevance | path

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

/src/contrib/llvm-project/llvm/include/llvm/Option/
H A DOption.h228 std::unique_ptr<Arg> accept(const ArgList &Args, StringRef CurArg,
232 std::unique_ptr<Arg> acceptInternal(const ArgList &Args, StringRef CurArg,
/src/contrib/llvm-project/llvm/lib/Option/
H A DOption.cpp234 std::unique_ptr<Arg> Option::accept(const ArgList &Args, StringRef CurArg, in accept() argument
238 ? std::make_unique<Arg>(*this, CurArg, Index) in accept()
239 : acceptInternal(Args, CurArg, Index)); in accept()