HomeSort by: relevance | last modified time | path
    Searched refs:Invocation (Results 1 - 25 of 170) sorted by relevancy

1 2 3 4 5 6 7

  /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...]
PrecompiledPreamble.h 57 /// Try to build PrecompiledPreamble for \p Invocation. See
60 /// \param Invocation Original CompilerInvocation with options to compile the
82 Build(const CompilerInvocation &Invocation,
107 bool CanReuse(const CompilerInvocation &Invocation,
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/external/apache2/llvm/dist/clang/tools/clang-fuzzer/handle-cxx/
handle_cxx.cpp 39 std::unique_ptr<clang::CompilerInvocation> Invocation(
43 Invocation->getPreprocessorOpts().addRemappedFile(FileName,
49 action->runInvocation(std::move(Invocation), Files.get(), PCHContainerOps,
  /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/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/llvm/tools/llvm-cov/
llvm-cov.cpp 80 std::string Invocation = std::string(argv[0]) + " " + argv[1];
81 argv[1] = Invocation.c_str();
  /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/tools/diagtool/
ShowEnabledWarnings.cpp 69 std::unique_ptr<CompilerInvocation> Invocation =
71 if (!Invocation)
76 CompilerInstance::createDiagnostics(&Invocation->getDiagnosticOpts());
  /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/external/apache2/llvm/dist/clang/lib/Tooling/DependencyScanning/
ModuleDepCollector.cpp 23 const CompilerInvocation &Invocation) {
24 // Make a deep copy of the invocation.
25 CompilerInvocation CI(Invocation);
58 CompilerInvocation CI(Invocation);
75 return serializeCompilerInvocation(Invocation);
206 MD.Invocation =
208 MD.ID.ContextHash = MD.Invocation.getModuleHash();
DependencyScanningWorker.cpp 48 /// dependency scanning for the given compiler invocation.
60 bool runInvocation(std::shared_ptr<CompilerInvocation> Invocation,
66 Compiler.setInvocation(std::move(Invocation));
107 // invocation to the collector. The options in the invocation are reset,
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
ASTUnit.cpp 157 /// and file-to-buffer remappings inside \p Invocation.
159 getBufferForFileHandlingRemapping(const CompilerInvocation &Invocation,
162 const auto &PreprocessorOpts = Invocation.getPreprocessorOpts();
166 // invocation (to a memory buffer).
261 // compiler instance *not* free these buffers for each invocation of the
263 if (Invocation && OwnsRemappedFileBuffers) {
264 PreprocessorOptions &PPOpts = Invocation->getPreprocessorOpts();
1093 /// invocation, replacing the current translation unit.
1100 if (!Invocation)
1107 auto CCInvocation = std::make_shared<CompilerInvocation>(*Invocation);
    [all...]
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...]
PrecompiledPreamble.cpp 312 const CompilerInvocation &Invocation,
320 auto PreambleInvocation = std::make_shared<CompilerInvocation>(Invocation);
346 // Tell the compiler invocation to generate a temporary precompiled header.
495 bool PrecompiledPreamble::CanReuse(const CompilerInvocation &Invocation,
504 auto PreambleInvocation = std::make_shared<CompilerInvocation>(Invocation);
CompilerInvocation.cpp 442 static bool FixupInvocation(CompilerInvocation &Invocation,
447 LangOptions &LangOpts = *Invocation.getLangOpts();
448 CodeGenOptions &CodeGenOpts = Invocation.getCodeGenOpts();
449 TargetOptions &TargetOpts = Invocation.getTargetOpts();
450 FrontendOptions &FrontendOpts = Invocation.getFrontendOpts();
639 // invocation diagnostics.
659 // Run the first parse on the original arguments with the dummy invocation and
666 // invocation and diagnostics, so all side-effects of parsing are visible.
687 // Generate arguments from the dummy invocation. If Generate is the
694 // invocation and diagnostics. The result is what we will end up using for th
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Tooling/
Tooling.h 77 /// Perform an action for an invocation.
79 runInvocation(std::shared_ptr<CompilerInvocation> Invocation,
96 bool runInvocation(std::shared_ptr<CompilerInvocation> Invocation,
231 /// Utility to run a FrontendAction in a single clang invocation.
234 /// Create a tool invocation.
250 /// Create a tool invocation.
268 /// Run the clang invocation.
276 std::shared_ptr<CompilerInvocation> Invocation,
  /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/sys/external/bsd/acpica/dist/include/
acdebug.h 67 const char *Invocation; /* Command Invocation */
  /src/external/apache2/llvm/dist/clang/lib/Interpreter/
Interpreter.cpp 146 CompilerInvocation 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/llvm/tools/llvm-profdata/
llvm-profdata.cpp 2523 std::string Invocation(ProgName.str() + " " + argv[1]);
2524 argv[1] = Invocation.c_str();
  /src/external/gpl3/gdb/dist/readline/readline/examples/rlfe/
configure 1742 generated by GNU Autoconf 2.69. Invocation command line was
4880 generated by GNU Autoconf 2.69. Invocation command line was
  /src/external/gpl3/gdb.old/dist/readline/readline/examples/rlfe/
configure 1742 generated by GNU Autoconf 2.69. Invocation command line was
4880 generated by GNU Autoconf 2.69. Invocation command line was
  /src/external/gpl2/gettext/dist/
configure 1409 generated by GNU Autoconf 2.61. Invocation command line was
3179 generated by GNU Autoconf 2.61. Invocation command line was

Completed in 68 milliseconds

1 2 3 4 5 6 7