/external/llvm/unittests/Option/ |
D | OptionParsingTest.cpp | 70 InputArgList AL = T.ParseArgs(Args, MAI, MAC); in TEST() 115 InputArgList AL = T.ParseArgs(Args, MAI, MAC, in TEST() 143 InputArgList AL = T.ParseArgs(MyArgs, MAI, MAC); in TEST() 152 InputArgList AL = T.ParseArgs(MyArgs, MAI, MAC); in TEST() 163 InputArgList AL = T.ParseArgs(MyArgs, MAI, MAC); in TEST() 173 InputArgList AL = T.ParseArgs(MyArgs, MAI, MAC); in TEST() 183 InputArgList AL = T.ParseArgs(MyArgs, MAI, MAC); in TEST() 194 InputArgList AL = T.ParseArgs(MyArgs, MAI, MAC); in TEST() 211 InputArgList AL = T.ParseArgs(MyArgs, MAI, MAC); in TEST()
|
/external/llvm/include/llvm/Option/ |
D | ArgList.h | 315 class InputArgList final : public ArgList { 338 InputArgList(const char* const *ArgBegin, const char* const *ArgEnd); 339 InputArgList(InputArgList &&RHS) in InputArgList() function 343 InputArgList &operator=(InputArgList &&RHS) { 351 ~InputArgList() { releaseMemory(); } in ~InputArgList() 378 const InputArgList &BaseArgs; 385 DerivedArgList(const InputArgList &BaseArgs); 395 const InputArgList &getBaseArgs() const { in getBaseArgs()
|
D | OptTable.h | 22 class InputArgList; variable 152 InputArgList ParseArgs(ArrayRef<const char *> Args, unsigned &MissingArgIndex,
|
/external/clang/include/clang/Driver/ |
D | Compilation.h | 21 class InputArgList; variable 45 llvm::opt::InputArgList *Args; 80 llvm::opt::InputArgList *Args, 99 const llvm::opt::InputArgList &getInputArgs() const { return *Args; } in getInputArgs()
|
D | Driver.h | 33 class InputArgList; variable 208 TranslateInputArgs(const llvm::opt::InputArgList &Args) const; 285 llvm::opt::InputArgList ParseArgStrings(ArrayRef<const char *> Args);
|
D | ToolChain.h | 29 class InputArgList; variable
|
/external/llvm/lib/LibDriver/ |
D | LibDriver.cpp | 59 static std::string getOutputPath(llvm::opt::InputArgList *Args, in getOutputPath() 68 static std::vector<StringRef> getSearchPaths(llvm::opt::InputArgList *Args, in getSearchPaths() 112 llvm::opt::InputArgList Args = in libDriverMain()
|
/external/llvm/lib/Option/ |
D | ArgList.cpp | 343 void InputArgList::releaseMemory() { in releaseMemory() 349 InputArgList::InputArgList(const char* const *ArgBegin, in InputArgList() function in InputArgList 355 unsigned InputArgList::MakeIndex(StringRef String0) const { in MakeIndex() 365 unsigned InputArgList::MakeIndex(StringRef String0, in MakeIndex() 374 const char *InputArgList::MakeArgStringRef(StringRef Str) const { in MakeArgStringRef() 380 DerivedArgList::DerivedArgList(const InputArgList &BaseArgs) in DerivedArgList()
|
D | OptTable.cpp | 248 InputArgList OptTable::ParseArgs(ArrayRef<const char *> ArgArr, in ParseArgs() 253 InputArgList Args(ArgArr.begin(), ArgArr.end()); in ParseArgs()
|
/external/clang/lib/Driver/ |
D | Compilation.cpp | 26 InputArgList *_Args, DerivedArgList *_TranslatedArgs) in Compilation()
|
D | Driver.cpp | 117 InputArgList Driver::ParseArgStrings(ArrayRef<const char *> ArgStrings) { in ParseArgStrings() 126 InputArgList Args = in ParseArgStrings() 208 DerivedArgList *Driver::TranslateInputArgs(const InputArgList &Args) const { in TranslateInputArgs() 422 InputArgList Args = ParseArgStrings(ArgList.slice(1)); in BuildCompilation() 482 std::unique_ptr<llvm::opt::InputArgList> UArgs = in BuildCompilation() 483 llvm::make_unique<InputArgList>(std::move(Args)); in BuildCompilation()
|
/external/clang/tools/driver/ |
D | driver.cpp | 267 InputArgList Args = in CreateAndPopulateDiagOpts()
|
D | cc1as_main.cpp | 169 InputArgList Args = OptTbl->ParseArgs(Argv, MissingArgIndex, MissingArgCount, in CreateFromArgs()
|
/external/clang/lib/Frontend/ |
D | CompilerInvocation.cpp | 1994 InputArgList Args = in CreateFromArgs()
|