Searched refs:OptionsParser (Results 1 – 10 of 10) sorted by relevance
| /openbsd-src/gnu/llvm/clang/lib/Tooling/ |
| H A D | StandaloneExecution.cpp | 45 : OptionsParser(std::move(Options)), in StandaloneToolExecutor() 46 Tool(OptionsParser->getCompilations(), OptionsParser->getSourcePathList(), in StandaloneToolExecutor() 75 create(CommonOptionsParser &OptionsParser) override { in create() argument 76 if (OptionsParser.getSourcePathList().empty()) in create() 79 return std::make_unique<StandaloneToolExecutor>(std::move(OptionsParser)); in create()
|
| H A D | Execution.cpp | 61 auto OptionsParser = in createExecutorFromCommandLineArgsImpl() local 64 if (!OptionsParser) in createExecutorFromCommandLineArgsImpl() 65 return OptionsParser.takeError(); in createExecutorFromCommandLineArgsImpl() 72 Plugin->create(*OptionsParser); in createExecutorFromCommandLineArgsImpl()
|
| H A D | AllTUsExecution.cpp | 73 : OptionsParser(std::move(Options)), in AllTUsToolExecutor() 74 Compilations(OptionsParser->getCompilations()), in AllTUsToolExecutor() 161 create(CommonOptionsParser &OptionsParser) override { in create() argument 162 if (OptionsParser.getSourcePathList().empty()) in create() 166 return std::make_unique<AllTUsToolExecutor>(std::move(OptionsParser), in create()
|
| /openbsd-src/gnu/llvm/clang/docs/ |
| H A D | LibTooling.rst | 74 CommonOptionsParser OptionsParser(argc, argv, MyToolCategory); 76 // Use OptionsParser.getCompilations() and OptionsParser.getSourcePathList() 96 ClangTool Tool(OptionsParser.getCompilations(), Sources); 136 CommonOptionsParser OptionsParser(argc, argv, MyToolCategory); 137 ClangTool Tool(OptionsParser.getCompilations(), 138 OptionsParser.getSourcePathList());
|
| H A D | LibASTMatchersTutorial.rst | 153 CommonOptionsParser& OptionsParser = ExpectedParser.get(); 154 ClangTool Tool(OptionsParser.getCompilations(), 155 OptionsParser.getSourcePathList()); 300 CommonOptionsParser& OptionsParser = ExpectedParser.get(); 301 ClangTool Tool(OptionsParser.getCompilations(), 302 OptionsParser.getSourcePathList());
|
| /openbsd-src/gnu/llvm/clang/tools/clang-extdef-mapping/ |
| H A D | ClangExtDefMapGen.cpp | 214 CommonOptionsParser &OptionsParser = ExpectedParser.get(); in main() local 216 return HandleFiles(OptionsParser.getSourcePathList(), in main() 217 OptionsParser.getCompilations()); in main()
|
| /openbsd-src/gnu/llvm/clang/tools/clang-check/ |
| H A D | ClangCheck.cpp | 210 CommonOptionsParser &OptionsParser = ExpectedParser.get(); in main() local 211 ClangTool Tool(OptionsParser.getCompilations(), in main() 212 OptionsParser.getSourcePathList()); in main()
|
| /openbsd-src/gnu/llvm/clang/include/clang/Tooling/ |
| H A D | AllTUsExecution.h | 65 std::optional<CommonOptionsParser> OptionsParser;
|
| H A D | StandaloneExecution.h | 87 std::optional<CommonOptionsParser> OptionsParser;
|
| H A D | Execution.h | 159 create(CommonOptionsParser &OptionsParser) = 0;
|