HomeSort by: relevance | last modified time | path
    Searched defs:Tool (Results 1 - 6 of 6) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Driver/
Tool.cpp 1 //===--- Tool.cpp - Compilation Tools -------------------------------------===//
9 #include "clang/Driver/Tool.h"
14 Tool::Tool(const char *_Name, const char *_ShortName, const ToolChain &TC)
17 Tool::~Tool() {
20 void Tool::ConstructJobMultipleOutputs(Compilation &C, const JobAction &JA,
  /src/external/apache2/llvm/dist/clang/include/clang/Tooling/
StandaloneExecution.h 64 Tool.setDiagnosticConsumer(DiagConsumer);
72 return Tool.getSourcePaths();
76 Tool.mapVirtualFile(FilePath, Content);
79 /// Returns the file manager used in the tool.
82 FileManager &getFiles() { return Tool.getFiles(); }
89 ClangTool Tool;
  /src/external/apache2/llvm/dist/clang/include/clang/Driver/
Tool.h 1 //===--- Tool.h - Compilation Tools -----------------------------*- C++ -*-===//
31 /// Tool - Information on a specific compilation tool.
32 class Tool {
33 /// The tool name (for debugging).
36 /// The human readable name for the tool, for use in diagnostics.
39 /// The tool chain this tool is a part of.
43 Tool(const char *Name, const char *ShortName, const ToolChain &TC);
46 virtual ~Tool();
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
SarifDiagnostics.cpp 370 json::Object Tool = createTool(Diags, RuleMapping);
376 return json::Object{{"tool", std::move(Tool)},
  /src/external/apache2/llvm/dist/clang/tools/driver/
driver.cpp 325 // If we call the cc1 tool from the clangDriver library (through
335 StringRef Tool = ArgV[1];
337 if (Tool == "-cc1")
339 if (Tool == "-cc1as")
342 if (Tool == "-cc1gen-reproducer")
346 llvm::errs() << "error: unknown integrated tool '" << Tool << "'. "
464 // Whether the cc1 tool should be called inside the current process, or if we
  /src/external/apache2/llvm/dist/llvm/tools/llvm-cov/
CodeCoverage.cpp 1 //===- CodeCoverage.cpp - Coverage tool based on profiling instrumentation-===//
9 // The 'CodeCoverageTool' class implements a command line tool to analyze and
54 /// The implementation of the coverage tool.
748 cl::ParseCommandLineOptions(argc, argv, "LLVM code coverage tool\n");
1180 CodeCoverageTool Tool;
1181 return Tool.run(CodeCoverageTool::Show, argc, argv);
1185 CodeCoverageTool Tool;
1186 return Tool.run(CodeCoverageTool::Report, argc, argv);
1190 CodeCoverageTool Tool;
1191 return Tool.run(CodeCoverageTool::Export, argc, argv)
    [all...]

Completed in 32 milliseconds