Home
last modified time | relevance | path

Searched refs:InputArgList (Results 1 – 25 of 26) sorted by relevance

12

/external/llvm/unittests/Option/
DOptionParsingTest.cpp70 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()
210 InputArgList AL = T.ParseArgs(MyArgs, MAI, MAC); in TEST()
221 InputArgList AL = T.ParseArgs(MyArgs, MAI, MAC); in TEST()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/Option/
DOptionParsingTest.cpp71 InputArgList AL = T.ParseArgs(Args, MAI, MAC); in TEST()
116 InputArgList AL = T.ParseArgs(Args, MAI, MAC, in TEST()
144 InputArgList AL = T.ParseArgs(MyArgs, MAI, MAC); in TEST()
153 InputArgList AL = T.ParseArgs(MyArgs, MAI, MAC); in TEST()
164 InputArgList AL = T.ParseArgs(MyArgs, MAI, MAC); in TEST()
174 InputArgList AL = T.ParseArgs(MyArgs, MAI, MAC); in TEST()
184 InputArgList AL = T.ParseArgs(MyArgs, MAI, MAC); in TEST()
195 InputArgList AL = T.ParseArgs(MyArgs, MAI, MAC); in TEST()
211 InputArgList AL = T.ParseArgs(MyArgs, MAI, MAC); in TEST()
222 InputArgList AL = T.ParseArgs(MyArgs, MAI, MAC); in TEST()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Option/
DArgList.h367 class InputArgList final : public ArgList {
390 InputArgList() : NumInputArgStrings(0) {} in InputArgList() function
392 InputArgList(const char* const *ArgBegin, const char* const *ArgEnd);
394 InputArgList(InputArgList &&RHS) in InputArgList() function
399 InputArgList &operator=(InputArgList &&RHS) {
408 ~InputArgList() { releaseMemory(); } in ~InputArgList()
435 const InputArgList &BaseArgs;
442 DerivedArgList(const InputArgList &BaseArgs);
452 const InputArgList &getBaseArgs() const { in getBaseArgs()
DOptTable.h29 class InputArgList; variable
213 InputArgList ParseArgs(ArrayRef<const char *> Args, unsigned &MissingArgIndex,
/external/llvm/include/llvm/Option/
DArgList.h315 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()
DOptTable.h22 class InputArgList; variable
152 InputArgList ParseArgs(ArrayRef<const char *> Args, unsigned &MissingArgIndex,
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Option/
DArgList.cpp212 void InputArgList::releaseMemory() { in releaseMemory()
218 InputArgList::InputArgList(const char* const *ArgBegin, in InputArgList() function in InputArgList
224 unsigned InputArgList::MakeIndex(StringRef String0) const { in MakeIndex()
234 unsigned InputArgList::MakeIndex(StringRef String0, in MakeIndex()
243 const char *InputArgList::MakeArgStringRef(StringRef Str) const { in MakeArgStringRef()
247 DerivedArgList::DerivedArgList(const InputArgList &BaseArgs) in DerivedArgList()
DOptTable.cpp383 InputArgList OptTable::ParseArgs(ArrayRef<const char *> ArgArr, in ParseArgs()
388 InputArgList Args(ArgArr.begin(), ArgArr.end()); in ParseArgs()
/external/clang/include/clang/Driver/
DCompilation.h23 class InputArgList; variable
54 llvm::opt::InputArgList *Args;
94 llvm::opt::InputArgList *Args,
148 const llvm::opt::InputArgList &getInputArgs() const { return *Args; } in getInputArgs()
DDriver.h34 class InputArgList; variable
215 TranslateInputArgs(const llvm::opt::InputArgList &Args) const;
300 llvm::opt::InputArgList ParseArgStrings(ArrayRef<const char *> Args);
DToolChain.h30 class InputArgList; variable
/external/llvm/lib/Option/
DArgList.cpp343 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()
DOptTable.cpp248 InputArgList OptTable::ParseArgs(ArrayRef<const char *> ArgArr, in ParseArgs()
253 InputArgList Args(ArgArr.begin(), ArgArr.end()); in ParseArgs()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ToolDrivers/llvm-lib/
DLibDriver.cpp58 static std::string getOutputPath(opt::InputArgList *Args, in getOutputPath()
67 static std::vector<StringRef> getSearchPaths(opt::InputArgList *Args, in getSearchPaths()
112 opt::InputArgList Args = in libDriverMain()
/external/llvm/lib/LibDriver/
DLibDriver.cpp59 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/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-rc/
DResourceScriptParser.h29 class InputArgList; variable
Dllvm-rc.cpp89 opt::InputArgList InputArgs = T.ParseArgs(ArgsArr, MAI, MAC); in main()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-mt/
Dllvm-mt.cpp95 opt::InputArgList InputArgs = T.ParseArgs(ArgsArr, MAI, MAC); in main()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ToolDrivers/llvm-dlltool/
DDlltoolDriver.cpp89 llvm::opt::InputArgList Args = in dlltoolDriverMain()
/external/clang/lib/Driver/
DCompilation.cpp26 InputArgList *_Args, DerivedArgList *_TranslatedArgs) in Compilation()
DDriver.cpp119 InputArgList Driver::ParseArgStrings(ArrayRef<const char *> ArgStrings) { in ParseArgStrings()
128 InputArgList Args = in ParseArgStrings()
212 DerivedArgList *Driver::TranslateInputArgs(const InputArgList &Args) const { in TranslateInputArgs()
476 InputArgList Args = ParseArgStrings(ArgList.slice(1)); in BuildCompilation()
558 std::unique_ptr<llvm::opt::InputArgList> UArgs = in BuildCompilation()
559 llvm::make_unique<InputArgList>(std::move(Args)); in BuildCompilation()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-cvtres/
Dllvm-cvtres.cpp103 opt::InputArgList InputArgs = T.ParseArgs(ArgsArr, MAI, MAC); in main()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-objcopy/
Dllvm-objcopy.cpp557 llvm::opt::InputArgList InputArgs = in ParseObjcopyOptions()
651 llvm::opt::InputArgList InputArgs = in ParseStripOptions()
/external/clang/tools/driver/
Dcc1as_main.cpp168 InputArgList Args = OptTbl->ParseArgs(Argv, MissingArgIndex, MissingArgCount, in CreateFromArgs()
Ddriver.cpp267 InputArgList Args = in CreateAndPopulateDiagOpts()

12