HomeSort by relevance Sort by last modified time
    Searched refs:InputArgList (Results 1 - 25 of 26) sorted by null

1 2

  /external/llvm/unittests/Option/
OptionParsingTest.cpp 70 InputArgList AL = T.ParseArgs(Args, MAI, MAC);
115 InputArgList AL = T.ParseArgs(Args, MAI, MAC,
143 InputArgList AL = T.ParseArgs(MyArgs, MAI, MAC);
152 InputArgList AL = T.ParseArgs(MyArgs, MAI, MAC);
163 InputArgList AL = T.ParseArgs(MyArgs, MAI, MAC);
173 InputArgList AL = T.ParseArgs(MyArgs, MAI, MAC);
183 InputArgList AL = T.ParseArgs(MyArgs, MAI, MAC);
194 InputArgList AL = T.ParseArgs(MyArgs, MAI, MAC);
210 InputArgList AL = T.ParseArgs(MyArgs, MAI, MAC);
221 InputArgList AL = T.ParseArgs(MyArgs, MAI, MAC)
    [all...]
  /external/llvm/include/llvm/Option/
OptTable.h 22 class InputArgList;
134 /// \brief Parse an list of arguments into an InputArgList.
136 /// The resulting InputArgList will reference the strings in [\p ArgBegin,
138 /// InputArgList.
150 /// \return An InputArgList; on error this will contain all the options
152 InputArgList ParseArgs(ArrayRef<const char *> Args, unsigned &MissingArgIndex,
ArgList.h 113 // InputArgList which deletes the contents of the container. If we could fix
315 class InputArgList final : public ArgList {
338 InputArgList(const char* const *ArgBegin, const char* const *ArgEnd);
339 InputArgList(InputArgList &&RHS)
343 InputArgList &operator=(InputArgList &&RHS) {
351 ~InputArgList() { releaseMemory(); }
378 const InputArgList &BaseArgs;
385 DerivedArgList(const InputArgList &BaseArgs)
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/Option/
OptionParsingTest.cpp 71 InputArgList AL = T.ParseArgs(Args, MAI, MAC);
116 InputArgList AL = T.ParseArgs(Args, MAI, MAC,
144 InputArgList AL = T.ParseArgs(MyArgs, MAI, MAC);
153 InputArgList AL = T.ParseArgs(MyArgs, MAI, MAC);
164 InputArgList AL = T.ParseArgs(MyArgs, MAI, MAC);
174 InputArgList AL = T.ParseArgs(MyArgs, MAI, MAC);
184 InputArgList AL = T.ParseArgs(MyArgs, MAI, MAC);
195 InputArgList AL = T.ParseArgs(MyArgs, MAI, MAC);
211 InputArgList AL = T.ParseArgs(MyArgs, MAI, MAC);
222 InputArgList AL = T.ParseArgs(MyArgs, MAI, MAC)
    [all...]
  /external/clang/include/clang/Driver/
Compilation.h 23 class InputArgList;
54 llvm::opt::InputArgList *Args;
94 llvm::opt::InputArgList *Args,
148 const llvm::opt::InputArgList &getInputArgs() const { return *Args; }
Driver.h 34 class InputArgList;
215 TranslateInputArgs(const llvm::opt::InputArgList &Args) const;
300 llvm::opt::InputArgList ParseArgStrings(ArrayRef<const char *> Args);
ToolChain.h 30 class InputArgList;
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Option/
ArgList.h 153 // InputArgList which deletes the contents of the container. If we could fix
367 class InputArgList final : public ArgList {
390 InputArgList() : NumInputArgStrings(0) {}
392 InputArgList(const char* const *ArgBegin, const char* const *ArgEnd);
394 InputArgList(InputArgList &&RHS)
399 InputArgList &operator=(InputArgList &&RHS) {
408 ~InputArgList() { releaseMemory(); }
435 const InputArgList &BaseArgs
    [all...]
OptTable.h 29 class InputArgList;
195 /// Parse an list of arguments into an InputArgList.
197 /// The resulting InputArgList will reference the strings in [\p ArgBegin,
199 /// InputArgList.
211 /// \return An InputArgList; on error this will contain all the options
213 InputArgList ParseArgs(ArrayRef<const char *> Args, unsigned &MissingArgIndex,
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Option/
ArgList.cpp 212 void InputArgList::releaseMemory() {
213 // An InputArgList always owns its arguments.
218 InputArgList::InputArgList(const char* const *ArgBegin,
224 unsigned InputArgList::MakeIndex(StringRef String0) const {
234 unsigned InputArgList::MakeIndex(StringRef String0,
243 const char *InputArgList::MakeArgStringRef(StringRef Str) const {
247 DerivedArgList::DerivedArgList(const InputArgList &BaseArgs)
OptTable.cpp 383 InputArgList OptTable::ParseArgs(ArrayRef<const char *> ArgArr,
388 InputArgList Args(ArgArr.begin(), ArgArr.end());
  /external/llvm/lib/LibDriver/
LibDriver.cpp 59 static std::string getOutputPath(llvm::opt::InputArgList *Args,
68 static std::vector<StringRef> getSearchPaths(llvm::opt::InputArgList *Args,
112 llvm::opt::InputArgList Args =
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/ToolDrivers/llvm-lib/
LibDriver.cpp 58 static std::string getOutputPath(opt::InputArgList *Args,
67 static std::vector<StringRef> getSearchPaths(opt::InputArgList *Args,
112 opt::InputArgList Args =
  /external/llvm/lib/Option/
ArgList.cpp 343 void InputArgList::releaseMemory() {
344 // An InputArgList always owns its arguments.
349 InputArgList::InputArgList(const char* const *ArgBegin,
355 unsigned InputArgList::MakeIndex(StringRef String0) const {
365 unsigned InputArgList::MakeIndex(StringRef String0,
374 const char *InputArgList::MakeArgStringRef(StringRef Str) const {
380 DerivedArgList::DerivedArgList(const InputArgList &BaseArgs)
OptTable.cpp 248 InputArgList OptTable::ParseArgs(ArrayRef<const char *> ArgArr,
253 InputArgList Args(ArgArr.begin(), ArgArr.end());
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/ToolDrivers/llvm-dlltool/
DlltoolDriver.cpp 89 llvm::opt::InputArgList Args =
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-mt/
llvm-mt.cpp 95 opt::InputArgList InputArgs = T.ParseArgs(ArgsArr, MAI, MAC);
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-rc/
ResourceScriptParser.h 29 class InputArgList;
llvm-rc.cpp 89 opt::InputArgList InputArgs = T.ParseArgs(ArgsArr, MAI, MAC);
  /external/clang/lib/Driver/
Compilation.cpp 26 InputArgList *_Args, DerivedArgList *_TranslatedArgs)
Driver.cpp 119 InputArgList Driver::ParseArgStrings(ArrayRef<const char *> ArgStrings) {
128 InputArgList Args =
212 DerivedArgList *Driver::TranslateInputArgs(const InputArgList &Args) const {
476 InputArgList Args = ParseArgStrings(ArgList.slice(1));
558 std::unique_ptr<llvm::opt::InputArgList> UArgs =
559 llvm::make_unique<InputArgList>(std::move(Args));
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-cvtres/
llvm-cvtres.cpp 103 opt::InputArgList InputArgs = T.ParseArgs(ArgsArr, MAI, MAC);
  /external/clang/tools/driver/
driver.cpp 267 InputArgList Args =
cc1as_main.cpp 168 InputArgList Args = OptTbl->ParseArgs(Argv, MissingArgIndex, MissingArgCount,
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-objcopy/
llvm-objcopy.cpp 557 llvm::opt::InputArgList InputArgs =
651 llvm::opt::InputArgList InputArgs =

Completed in 2483 milliseconds

1 2