Home
last modified time | relevance | path

Searched refs:Plugins (Results 1 – 25 of 57) sorted by relevance

123

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DPluginLoader.cpp22 static ManagedStatic<std::vector<std::string> > Plugins; variable
32 Plugins->push_back(Filename); in operator =()
38 return Plugins.isConstructed() ? Plugins->size() : 0; in getNumPlugins()
43 assert(Plugins.isConstructed() && num < Plugins->size() && in getPlugin()
45 return (*Plugins)[num]; in getPlugin()
/netbsd-src/external/apache2/llvm/dist/clang/docs/
H A DClangFormattedStatus.rst2537 * - lldb/source/Plugins/ABI/AArch64
2542 * - lldb/source/Plugins/ABI/ARC
2547 * - lldb/source/Plugins/ABI/ARM
2552 * - lldb/source/Plugins/ABI/Hexagon
2557 * - lldb/source/Plugins/ABI/Mips
2562 * - lldb/source/Plugins/ABI/PowerPC
2567 * - lldb/source/Plugins/ABI/SystemZ
2572 * - lldb/source/Plugins/ABI/X86
2577 * - lldb/source/Plugins/Architecture/Arm
2582 * - lldb/source/Plugins/Architecture/Mips
[all …]
H A DTooling.rst33 Clang Plugins
36 :doc:`Clang Plugins <ClangPlugins>` allow you to run additional actions on the
37 AST as part of a compilation. Plugins are dynamic libraries that are loaded at
41 Canonical examples of when to use Clang Plugins:
46 Use Clang Plugins when you...:
52 Do not use Clang Plugins when you...:
75 * want to share code with Clang Plugins
H A DClangPlugins.rst2 Clang Plugins
5 Clang Plugins make it possible to run extra user defined actions during a
12 Clang Plugins run FrontendActions over code. See the :doc:`FrontendAction
49 Plugins can also define pragmas by declaring a ``PragmaHandler`` and
69 Plugins can define attributes by declaring a ``ParsedAttrInfo`` and registering
/netbsd-src/external/gpl3/gcc.old/dist/gcc/doc/
H A Dplugins.texi6 @node Plugins
7 @chapter Plugins
8 @cindex Plugins
21 * Plugins loading:: How can we load plugins.
23 * Plugins pass:: How a plugin interact with the pass manager.
24 * Plugins GC:: How a plugin Interact with GCC Garbage Collector.
25 * Plugins description:: Giving information about a plugin itself.
26 * Plugins attr:: Registering custom attributes or pragmas.
27 * Plugins recording:: Recording information about pass execution.
28 * Plugins gate:: Controlling which passes are being run.
[all …]
H A Dgccint.texi124 * Plugins:: Extending the compiler with plugins.
/netbsd-src/external/gpl3/gcc/dist/gcc/doc/
H A Dplugins.texi6 @node Plugins
7 @chapter Plugins
8 @cindex Plugins
21 * Plugins loading:: How can we load plugins.
23 * Plugins pass:: How a plugin interact with the pass manager.
24 * Plugins GC:: How a plugin Interact with GCC Garbage Collector.
25 * Plugins description:: Giving information about a plugin itself.
26 * Plugins attr:: Registering custom attributes or pragmas.
27 * Plugins recording:: Recording information about pass execution.
28 * Plugins gate:: Controlling which passes are being run.
[all …]
H A Dgccint.texi124 * Plugins:: Extending the compiler with plugins.
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Frontend/
H A DAnalyzerHelpFlags.cpp34 CI.getFrontendOpts().Plugins); in printCheckerHelp()
45 CI.getFrontendOpts().Plugins); in printEnabledCheckerList()
54 CI.getFrontendOpts().Plugins); in printCheckerConfigList()
H A DAnalysisConsumer.cpp91 ArrayRef<std::string> Plugins; member in __anonc99194a10111::AnalysisConsumer
128 Plugins(plugins), Injector(injector), CTU(CI), in AnalysisConsumer()
219 checkerMgr = std::make_unique<CheckerManager>(*Ctx, *Opts, PP, Plugins, in Initialize()
743 CI.getFrontendOpts().Plugins, in CreateAnalysisConsumer()
H A DCheckerRegistry.cpp52 CheckerRegistryData &Data, ArrayRef<std::string> Plugins, in CheckerRegistry() argument
73 for (const std::string &Plugin : Plugins) { in CheckerRegistry()
/netbsd-src/external/mpl/bind/dist/doc/arm/
H A Dplugins.inc.rst14 Plugins chapter
17 Plugins are a mechanism to extend the functionality of :iscman:`named` using
35 Configuring Plugins
59 Developing Plugins
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/
H A DObjectLinkingLayer.cpp141 for (auto &P : Layer.Plugins) in notifyMaterializing()
148 for (auto &P : Layer.Plugins) in notifyFailed()
432 for (auto &P : Layer.Plugins) { in computeNamedSymbolDependencies()
620 for (auto &P : Plugins) in modifyPassConfig()
625 for (auto &P : Plugins) in notifyLoaded()
632 for (auto &P : Plugins) in notifyEmitted()
646 for (auto &P : Plugins) in handleRemoveResources()
681 for (auto &P : Plugins) in handleTransferResources()
/netbsd-src/external/bsd/openldap/dist/doc/guide/admin/
H A Dappendix-contrib.sdf26 Plugins that implement access rules. Currently only posixGroup,
110 H2: SLAPI Plugins
/netbsd-src/external/apache2/llvm/dist/clang/tools/scan-build/libexec/
H A Dccc-analyzer464 my $Plugins = $ENV{'CCC_ANALYZER_PLUGINS'};
745 if (defined $Plugins) {
746 push @AnalyzeArgs, split '\s+', $Plugins;
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/
H A DObjectLinkingLayer.h128 Plugins.push_back(std::move(P)); in addPlugin()
201 std::vector<std::unique_ptr<Plugin>> Plugins; variable
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Frontend/
H A DCheckerRegistry.h91 CheckerRegistry(CheckerRegistryData &Data, ArrayRef<std::string> Plugins,
/netbsd-src/external/bsd/openldap/dist/contrib/slapd-modules/
H A DREADME10 Plugins implementing access rules. Currently one plugin
/netbsd-src/external/gpl3/gcc/dist/libgomp/plugin/
H A DMakefrag.am1 # Plugins for offload execution, Makefile.am fragment.
H A Dconfigfrag.ac1 # Plugins for offload execution, configure.ac fragment. -*- mode: autoconf -*-
/netbsd-src/external/gpl3/gcc.old/dist/libgomp/plugin/
H A DMakefrag.am1 # Plugins for offload execution, Makefile.am fragment.
/netbsd-src/external/ibm-public/postfix/dist/proto/
H A Dstop.spell-proto-html328 Plugins
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Frontend/
H A DFrontendOptions.h414 std::vector<std::string> Plugins; variable
/netbsd-src/external/apache2/llvm/dist/clang/lib/FrontendTool/
H A DExecuteCompilerInvocation.cpp207 for (const std::string &Path : Clang->getFrontendOpts().Plugins) { in ExecuteCompilerInvocation()
/netbsd-src/external/bsd/unbound/dist/winrc/
H A DREADME.txt91 copy System.dll from the windows dist of NSIS to /usr/share/nsis/Plugins/

123