Home
last modified time | relevance | path

Searched refs:SourcePaths (Results 1 – 13 of 13) sorted by relevance

/external/clang/lib/Tooling/
DCommonOptionsParser.cpp103 static cl::list<std::string> SourcePaths( in CommonOptionsParser() local
123 SourcePathList = SourcePaths; in CommonOptionsParser()
133 Compilations = CompilationDatabase::autoDetectFromSource(SourcePaths[0], in CommonOptionsParser()
DRefactoring.cpp30 const CompilationDatabase &Compilations, ArrayRef<std::string> SourcePaths, in RefactoringTool() argument
32 : ClangTool(Compilations, SourcePaths, PCHContainerOps) {} in RefactoringTool()
DTooling.cpp317 ArrayRef<std::string> SourcePaths, in ClangTool() argument
319 : Compilations(Compilations), SourcePaths(SourcePaths), in ClangTool()
380 for (const auto &SourcePath : SourcePaths) { in run()
/external/llvm-project/clang/lib/Tooling/
DCommonOptionsParser.cpp91 static cl::list<std::string> SourcePaths( in init() local
125 SourcePathList = SourcePaths; in init()
134 Compilations = CompilationDatabase::autoDetectFromSource(SourcePaths[0], in init()
DStandaloneExecution.cpp31 llvm::ArrayRef<std::string> SourcePaths, in StandaloneToolExecutor() argument
34 : Tool(Compilations, SourcePaths, std::move(PCHContainerOps), in StandaloneToolExecutor()
DRefactoring.cpp28 const CompilationDatabase &Compilations, ArrayRef<std::string> SourcePaths, in RefactoringTool() argument
30 : ClangTool(Compilations, SourcePaths, std::move(PCHContainerOps)) {} in RefactoringTool()
DTooling.cpp403 ArrayRef<std::string> SourcePaths, in ClangTool() argument
407 : Compilations(Compilations), SourcePaths(SourcePaths), in ClangTool()
466 AbsolutePaths.reserve(SourcePaths.size()); in run()
467 for (const auto &SourcePath : SourcePaths) { in run()
/external/llvm-project/clang/include/clang/Tooling/
DTooling.h309 ArrayRef<std::string> SourcePaths,
364 llvm::ArrayRef<std::string> getSourcePaths() const { return SourcePaths; } in getSourcePaths()
368 std::vector<std::string> SourcePaths; variable
DRefactoring.h41 ArrayRef<std::string> SourcePaths,
DStandaloneExecution.h38 llvm::ArrayRef<std::string> SourcePaths,
/external/clang/include/clang/Tooling/
DRefactoring.h41 ArrayRef<std::string> SourcePaths,
DTooling.h295 ArrayRef<std::string> SourcePaths,
337 std::vector<std::string> SourcePaths; variable
/external/llvm-project/clang/unittests/Tooling/
DExecutionTest.cpp120 std::string SourcePaths; member in clang::tooling::TestToolExecutor