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

  /src/external/apache2/llvm/dist/llvm/tools/llvm-cov/
llvm-cov.cpp 80 std::string Invocation = std::string(argv[0]) + " " + argv[1];
81 argv[1] = Invocation.c_str();
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Frontend/
ModelInjector.cpp 67 auto Invocation = std::make_shared<CompilerInvocation>(CI.getInvocation());
69 FrontendOptions &FrontendOpts = Invocation->getFrontendOpts();
75 Invocation->getDiagnosticOpts().VerifyDiagnostics = 0;
80 Instance.setInvocation(std::move(Invocation));
  /src/external/apache2/llvm/dist/clang/tools/diagtool/
ShowEnabledWarnings.cpp 69 std::unique_ptr<CompilerInvocation> Invocation =
71 if (!Invocation)
76 CompilerInstance::createDiagnostics(&Invocation->getDiagnosticOpts());
  /src/external/apache2/llvm/dist/clang/include/clang/Tooling/DependencyScanning/
ModuleDepCollector.h 78 /// Compiler invocation that can be used to build this module (without paths).
79 CompilerInvocation Invocation;
  /src/external/apache2/llvm/dist/clang/lib/Interpreter/
Interpreter.cpp 146 CompilerInvocation Invocation;
  /src/external/apache2/llvm/dist/clang/lib/Tooling/DumpTool/
ClangSrcLocDump.cpp 138 auto Invocation = std::make_unique<CompilerInvocation>();
139 CompilerInvocation::CreateFromArgs(*Invocation, CC1Args, Diagnostics);
142 Compiler.setInvocation(std::move(Invocation));
  /src/sys/external/bsd/acpica/dist/include/
acdebug.h 67 const char *Invocation; /* Command Invocation */
  /src/external/apache2/llvm/dist/clang/lib/CrossTU/
CrossTranslationUnit.cpp 120 return "Invocation list file contains multiple references to the same "
123 return "Invocation list file is not found.";
125 return "Invocation list file is empty.";
127 return "Invocation list file is in wrong format.";
129 return "Invocation list file does not contain the requested source file.";
547 /// YAML formatted invocation list file under the filesystem path specified by
548 /// \p InvocationList. The invocation list should contain absolute paths.
565 auto Invocation = InvocationList->find(SourceFilePath);
566 if (Invocation == InvocationList->end())
570 const InvocationListTy::mapped_type &InvocationCommand = Invocation->second
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Tooling/
Tooling.cpp 143 /// Returns a clang build invocation initialized from the CC1 flags.
148 CompilerInvocation *Invocation = new CompilerInvocation;
149 CompilerInvocation::CreateFromArgs(*Invocation, CC1Args, *Diagnostics,
151 Invocation->getFrontendOpts().DisableFree = false;
152 Invocation->getCodeGenOpts().DisableFree = false;
153 return Invocation;
194 ToolInvocation Invocation(
197 return Invocation.run();
358 std::unique_ptr<CompilerInvocation> Invocation(
360 return runInvocation(BinaryName, Compilation.get(), std::move(Invocation),
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Frontend/
CompilerInstance.h 75 std::shared_ptr<CompilerInvocation> Invocation;
198 /// - The invocation options should be initialized. This function does not
223 /// @name Compiler Invocation and Options
226 bool hasInvocation() const { return Invocation != nullptr; }
229 assert(Invocation && "Compiler instance has no invocation!");
230 return *Invocation;
233 /// setInvocation - Replace the current invocation.
250 return Invocation->getAnalyzerOpts();
254 return Invocation->getCodeGenOpts()
    [all...]
ASTUnit.h 137 /// Optional owned invocation, just used to make the invocation used in
139 std::shared_ptr<CompilerInvocation> Invocation;
703 /// \c LoadFromCommandLine(), which loads an AST from a compiler invocation.
725 /// \param CI - The compiler invocation to use; it must have exactly one input
766 /// \param CI - The compiler invocation to use; it must have exactly one input
  /src/sys/external/bsd/acpica/dist/debugger/
dbinput.c 332 {1, " Call", "Run to next control method invocation\n"},
383 const char *Invocation = Help->Invocation;
389 if (*Invocation != ' ')
394 while (*Invocation == ' ')
396 Invocation++;
401 while ((*Command) && (*Invocation) && (*Invocation != ' '))
403 if (tolower ((int) *Command) != tolower ((int) *Invocation))
408 Invocation++
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
CompilerInstance.cpp 62 Invocation(new CompilerInvocation()),
73 Invocation = std::move(Value);
455 PP = std::make_shared<Preprocessor>(Invocation->getPreprocessorOptsPtr(),
1049 // Construct a compiler invocation for creating this module.
1050 auto Invocation =
1053 PreprocessorOptions &PPOpts = Invocation->getPreprocessorOpts();
1057 Invocation->getLangOpts()->resetNonModularOptions();
1062 HeaderSearchOptions &HSOpts = Invocation->getHeaderSearchOpts();
1072 // If the original compiler invocation had -fmodule-name, pass it through.
1073 Invocation->getLangOpts()->ModuleName
    [all...]

Completed in 27 milliseconds