Home
last modified time | relevance | path

Searched refs:Invocation (Results 1 – 25 of 238) sorted by relevance

12345678910

/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Frontend/
H A DCompilerInstance.h75 std::shared_ptr<CompilerInvocation> Invocation; variable
226 bool hasInvocation() const { return Invocation != nullptr; } in hasInvocation()
229 assert(Invocation && "Compiler instance has no invocation!"); in getInvocation()
230 return *Invocation; in getInvocation()
250 return Invocation->getAnalyzerOpts(); in getAnalyzerOpts()
254 return Invocation->getCodeGenOpts(); in getCodeGenOpts()
257 return Invocation->getCodeGenOpts(); in getCodeGenOpts()
261 return Invocation->getDependencyOutputOpts(); in getDependencyOutputOpts()
264 return Invocation->getDependencyOutputOpts(); in getDependencyOutputOpts()
268 return Invocation->getDiagnosticOpts(); in getDiagnosticOpts()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/Tooling/
H A DTooling.cpp148 CompilerInvocation *Invocation = new CompilerInvocation; in newInvocation() local
149 CompilerInvocation::CreateFromArgs(*Invocation, CC1Args, *Diagnostics, in newInvocation()
151 Invocation->getFrontendOpts().DisableFree = false; in newInvocation()
152 Invocation->getCodeGenOpts().DisableFree = false; in newInvocation()
153 return Invocation; in newInvocation()
194 ToolInvocation Invocation( in runToolOnCodeWithArgs() local
197 return Invocation.run(); in runToolOnCodeWithArgs()
358 std::unique_ptr<CompilerInvocation> Invocation( in run() local
360 return runInvocation(BinaryName, Compilation.get(), std::move(Invocation), in run()
366 std::shared_ptr<CompilerInvocation> Invocation, in runInvocation() argument
[all …]
/netbsd-src/sys/external/bsd/acpica/dist/debugger/
H A Ddbinput.c383 const char *Invocation = Help->Invocation; in AcpiDbMatchCommandHelp() local
389 if (*Invocation != ' ') in AcpiDbMatchCommandHelp()
394 while (*Invocation == ' ') in AcpiDbMatchCommandHelp()
396 Invocation++; in AcpiDbMatchCommandHelp()
401 while ((*Command) && (*Invocation) && (*Invocation != ' ')) in AcpiDbMatchCommandHelp()
403 if (tolower ((int) *Command) != tolower ((int) *Invocation)) in AcpiDbMatchCommandHelp()
408 Invocation++; in AcpiDbMatchCommandHelp()
417 AcpiOsPrintf ("%-38s : %s", Help->Invocation, Help->Description); in AcpiDbMatchCommandHelp()
450 while (Next->Invocation) in AcpiDbDisplayCommandInfo()
490 while (Next->Invocation) in AcpiDbDisplayHelp()
[all …]
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/doc/
H A Dgettext.info7 * autopoint: (gettext)autopoint Invocation. Copy gettext infrastructure.
8 * envsubst: (gettext)envsubst Invocation. Expand environment variables.
9 * gettextize: (gettext)gettextize Invocation. Prepare a package for gettext.
10 * msgattrib: (gettext)msgattrib Invocation. Select part of a PO file.
11 * msgcat: (gettext)msgcat Invocation. Combine several PO files.
12 * msgcmp: (gettext)msgcmp Invocation. Compare a PO file and template.
13 * msgcomm: (gettext)msgcomm Invocation. Match two PO files.
14 * msgconv: (gettext)msgconv Invocation. Convert PO file to encoding.
15 * msgen: (gettext)msgen Invocation. Create an English PO file.
16 * msgexec: (gettext)msgexec Invocation. Process a PO file.
[all …]
H A DChangeLog.0152 * gettext.texi (gettextize Invocation): Move to gettextize.texi.
158 * gettext.texi (gettextize Invocation): Document option --dry-run.
261 * gettext.texi (gettextize Invocation): Document --no-changelog
295 (gettextize Invocation): Mention config.rpath.
343 * gettext.texi (msgfilter Invocation): Renamed from msgexec Invocation.
344 (msgexec Invocation): New section.
394 (gettextize Invocation): Document option --intl.
467 * msgfmt.texi: New file, partially from node "msgfmt Invocation".
473 * xgettext.texi: New file, partially from node "xgettext Invocation".
475 (xgettext Invocation): Reorganize and move to xgettext.texi.
[all …]
/netbsd-src/external/gpl2/texinfo/dist/util/
H A Ddir-example170 * xgettext: (gettext)xgettext Invocation. Extract strings into a PO file.
171 * autopoint: (gettext)autopoint Invocation. Copy gettext infrastructure.
172 * envsubst: (gettext)envsubst Invocation. Expand environment variables.
174 * gettextize: (gettext)gettextize Invocation. Prepare a package for gettext.
175 * msgattrib: (gettext)msgattrib Invocation. Select part of a PO file.
176 * msgcat: (gettext)msgcat Invocation. Combine several PO files.
177 * msgcmp: (gettext)msgcmp Invocation. Compare a PO file and template.
178 * msgcomm: (gettext)msgcomm Invocation. Match two PO files.
179 * msgconv: (gettext)msgconv Invocation. Convert PO file to encoding.
180 * msgen: (gettext)msgen Invocation. Create an English PO file.
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Frontend/
H A DModelInjector.cpp67 auto Invocation = std::make_shared<CompilerInvocation>(CI.getInvocation()); in onBodySynthesis() local
69 FrontendOptions &FrontendOpts = Invocation->getFrontendOpts(); in onBodySynthesis()
75 Invocation->getDiagnosticOpts().VerifyDiagnostics = 0; in onBodySynthesis()
80 Instance.setInvocation(std::move(Invocation)); in onBodySynthesis()
/netbsd-src/external/apache2/llvm/dist/clang/tools/clang-fuzzer/handle-cxx/
H A Dhandle_cxx.cpp39 std::unique_ptr<clang::CompilerInvocation> Invocation( in HandleCXX() local
43 Invocation->getPreprocessorOpts().addRemappedFile(FileName, in HandleCXX()
49 action->runInvocation(std::move(Invocation), Files.get(), PCHContainerOps, in HandleCXX()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Tooling/DependencyScanning/
H A DModuleDepCollector.cpp23 const CompilerInvocation &Invocation) { in makeInvocationForModuleBuildWithoutPaths() argument
25 CompilerInvocation CI(Invocation); in makeInvocationForModuleBuildWithoutPaths()
58 CompilerInvocation CI(Invocation); in getCanonicalCommandLine()
75 return serializeCompilerInvocation(Invocation); in getCanonicalCommandLineWithoutModulePaths()
206 MD.Invocation = in handleTopLevelModule()
208 MD.ID.ContextHash = MD.Invocation.getModuleHash(); in handleTopLevelModule()
H A DDependencyScanningWorker.cpp60 bool runInvocation(std::shared_ptr<CompilerInvocation> Invocation, in runInvocation() argument
66 Compiler.setInvocation(std::move(Invocation)); in runInvocation()
/netbsd-src/external/apache2/llvm/dist/clang/tools/diagtool/
H A DShowEnabledWarnings.cpp69 std::unique_ptr<CompilerInvocation> Invocation = in createDiagnostics() local
71 if (!Invocation) in createDiagnostics()
76 CompilerInstance::createDiagnostics(&Invocation->getDiagnosticOpts()); in createDiagnostics()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Frontend/
H A DASTUnit.cpp159 getBufferForFileHandlingRemapping(const CompilerInvocation &Invocation, in getBufferForFileHandlingRemapping() argument
162 const auto &PreprocessorOpts = Invocation.getPreprocessorOpts(); in getBufferForFileHandlingRemapping()
263 if (Invocation && OwnsRemappedFileBuffers) { in ~ASTUnit()
264 PreprocessorOptions &PPOpts = Invocation->getPreprocessorOpts(); in ~ASTUnit()
1100 if (!Invocation) in Parse()
1107 auto CCInvocation = std::make_shared<CompilerInvocation>(*Invocation); in Parse()
1455 if (Invocation && !Invocation->getFrontendOpts().Inputs.empty()) { in getMainFileName()
1456 const FrontendInputFile &Input = Invocation->getFrontendOpts().Inputs[0]; in getMainFileName()
1492 AST->Invocation = std::move(CI); in create()
1643 if (!Invocation) in LoadFromCompilerInvocation()
[all …]
H A DCompilerInstance.cpp62 Invocation(new CompilerInvocation()), in CompilerInstance()
73 Invocation = std::move(Value); in setInvocation()
455 PP = std::make_shared<Preprocessor>(Invocation->getPreprocessorOptsPtr(), in createPreprocessor()
1050 auto Invocation = local
1053 PreprocessorOptions &PPOpts = Invocation->getPreprocessorOpts();
1057 Invocation->getLangOpts()->resetNonModularOptions();
1062 HeaderSearchOptions &HSOpts = Invocation->getHeaderSearchOpts();
1073 Invocation->getLangOpts()->ModuleName =
1077 Invocation->getLangOpts()->CurrentModule = std::string(ModuleName);
1092 FrontendOptions &FrontendOpts = Invocation->getFrontendOpts();
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/Tooling/DumpTool/
H A DClangSrcLocDump.cpp138 auto Invocation = std::make_unique<CompilerInvocation>(); in main() local
139 CompilerInvocation::CreateFromArgs(*Invocation, CC1Args, Diagnostics); in main()
142 Compiler.setInvocation(std::move(Invocation)); in main()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-cov/
H A Dllvm-cov.cpp80 std::string Invocation = std::string(argv[0]) + " " + argv[1]; in main() local
81 argv[1] = Invocation.c_str(); in main()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Tooling/
H A DTooling.h79 runInvocation(std::shared_ptr<CompilerInvocation> Invocation,
96 bool runInvocation(std::shared_ptr<CompilerInvocation> Invocation,
276 std::shared_ptr<CompilerInvocation> Invocation,
/netbsd-src/external/gpl3/gcc.old/dist/gcc/doc/
H A Dcppenv.texi63 (@pxref{Invocation}),
77 @xref{Invocation}.
89 @xref{Invocation}.
/netbsd-src/external/gpl3/gcc/dist/gcc/doc/
H A Dcppenv.texi63 (@pxref{Invocation}),
77 @xref{Invocation}.
89 @xref{Invocation}.
/netbsd-src/external/bsd/ntp/dist/scripts/
H A Dinvoke-plot_summary.menu1 * plot_summary Invocation:: Invoking plot_summary
H A Dinvoke-summary.menu1 * summary Invocation:: Invoking summary
/netbsd-src/external/bsd/ntp/dist/sntp/
H A Dinvoke-sntp.menu1 * sntp Invocation:: Invoking sntp
/netbsd-src/external/bsd/ntp/dist/scripts/calc_tickadj/
H A Dinvoke-calc_tickadj.menu1 * calc_tickadj Invocation:: Invoking calc_tickadj
/netbsd-src/external/bsd/ntp/dist/scripts/ntptrace/
H A Dinvoke-ntptrace.menu1 * ntptrace Invocation:: Invoking ntptrace
/netbsd-src/external/bsd/ntp/dist/ntpsnmpd/
H A Dinvoke-ntpsnmpd.menu1 * ntpsnmpd Invocation:: Invoking ntpsnmpd
/netbsd-src/external/bsd/ntp/dist/ntpdc/
H A Dinvoke-ntpdc.menu1 * ntpdc Invocation:: Invoking ntpdc

12345678910