Home
last modified time | relevance | path

Searched refs:plugin (Results 1 – 25 of 505) sorted by relevance

12345678910>>...21

/external/jarjar/lib/
Dmaven-plugin-api.jar ... apache/maven/ org/apache/maven/plugin/ org/apache/maven/plugin/logging
/external/jetty/
Dpom.xml_saved29 <plugin>
30 <artifactId>maven-compiler-plugin</artifactId>
36 </plugin>
37 <plugin>
38 <artifactId>maven-release-plugin</artifactId>
42 </plugin>
43 <plugin>
45 <artifactId>maven-remote-resources-plugin</artifactId>
59 </plugin>
60 <!-- source maven plugin creates the source bundle and adds manifest -->
[all …]
/external/clang/examples/PrintFunctionNames/
DREADME.txt2 providing AST consumers using a plugin.
4 Build the plugin by running `make` in this directory.
6 Once the plugin is built, you can run it using:
9 $ clang -cc1 -load ../../Debug+Asserts/lib/libPrintFunctionNames.so -plugin print-fns some-input-fi…
10 … ../../Debug+Asserts/lib/libPrintFunctionNames.so -plugin print-fns -plugin-arg-print-fns help -pl…
11 $ clang -cc1 -load ../../Debug+Asserts/lib/libPrintFunctionNames.so -plugin print-fns -plugin-arg-p…
14 $ clang -cc1 -load ../../Debug+Asserts/lib/libPrintFunctionNames.dylib -plugin print-fns some-input…
15 …/../Debug+Asserts/lib/libPrintFunctionNames.dylib -plugin print-fns -plugin-arg-print-fns help -pl…
16 $ clang -cc1 -load ../../Debug+Asserts/lib/libPrintFunctionNames.dylib -plugin print-fns -plugin-ar…
/external/chromium-trace/catapult/third_party/coverage/coverage/
Dplugin_support.py11 from coverage.plugin import CoveragePlugin, FileTracer, FileReporter
54 def add_file_tracer(self, plugin): argument
61 self._add_plugin(plugin, self.file_tracers)
63 def add_noop(self, plugin): argument
69 self._add_plugin(plugin, None)
71 def _add_plugin(self, plugin, specialized): argument
78 plugin_name = "%s.%s" % (self.current_module, plugin.__class__.__name__)
80 self.debug.write("Loaded plugin %r: %r" % (self.current_module, plugin))
82 plugin = DebugPluginWrapper(plugin, labelled)
85 plugin._coverage_plugin_name = plugin_name
[all …]
/external/clang/docs/
DClangPlugins.rst15 simple clang plugin.
21 handle plugin command line options. The ``PluginASTAction`` base class declares
22 a ``ParseArgs`` method which you have to implement in your plugin.
36 Registering a plugin
39 A plugin is loaded from a dynamic library at runtime by the compiler. To
40 register a plugin in a library, use ``FrontendPluginRegistry::Add<>``:
44 static FrontendPluginRegistry::Add<MyPlugin> X("my-plugin-name", "my plugin description");
49 Let's look at an example plugin that prints top-level function names. This
54 Running the plugin
57 To run a plugin, the dynamic library containing the plugin registry must be
[all …]
/external/jetty/lib/
Dslf4j-api-1.6.1.pom27 <plugin>
29 <artifactId>maven-surefire-plugin</artifactId>
39 </plugin>
41 <plugin>
43 <artifactId>maven-jar-plugin</artifactId>
64 </plugin>
66 <plugin>
68 <artifactId>maven-antrun-plugin</artifactId>
83 </plugin>
91 <plugin>
[all …]
Djetty-util-6.1.26.pom27 <plugin>
28 <artifactId>maven-antrun-plugin</artifactId>
57 </plugin>
58 <plugin>
60 <artifactId>maven-bundle-plugin</artifactId>
61 <version>${maven-bundle-plugin-version}</version>
78 </plugin>
79 <plugin>
84 <artifactId>maven-jar-plugin</artifactId>
90 </plugin>
Dslf4j-jdk14-1.6.1.pom43 <plugin>
45 <artifactId>maven-compiler-plugin</artifactId>
50 </plugin>
52 <plugin>
54 <artifactId>maven-jar-plugin</artifactId>
65 </plugin>
/external/llvm/docs/
DGoldPlugin.rst2 The LLVM gold plugin
13 The LLVM gold plugin implements the gold plugin interface on top of
14 :ref:`libLTO`. The same plugin can also be used by other tools such as
19 .. _`gold plugin interface`: http://gcc.gnu.org/wiki/whopr/driver
26 You need to have gold with plugin support and build the LLVMgold plugin.
28 gold" or else "GNU ld" if not. If you have gold, check for plugin support
29 by running ``/usr/bin/ld -plugin``. If it complains "missing argument" then
30 you have plugin support. If not, such as an "unknown option" error then you
31 will either need to build gold or install a version with plugin support.
33 * Download, configure and build gold with plugin support:
[all …]
/external/antlr/antlr-3.4/antlr3-maven-plugin/src/site/apt/
Dindex.apt9 ANTLR v3 Maven plugin
11 The ANTLR v3 Maven plugin is completely re-written as of version 3.1.3; if you are familiar
15 The job of the plugin is essentially to tell the standard ANTLR parser generator where the
20 This version of the plugin allows full control over ANTLR and allows configuration of all
23 tool as of version 3.1.3 of ANTLR and this plugin.
27 The plugin version tracks the version of the ANTLR tool that it controls. Hence if you
28 use version 3.1.3 of the plugin, you will build your grammars using version 3.1.3 of the
29 ANTLR tool, version 3.2 of the plugin will use version 3.2 of the ANTLR tool and so on.
31 You may also find that there are patch versions of the plugin suchas 3.1.3-1 3.1.3-2 and
32 so on. Use the latest patch release of the plugin.
[all …]
/external/llvm/test/tools/gold/X86/
Dopt-level.ll2 ; RUN: %gold -plugin %llvmshlibdir/LLVMgold.so -plugin-opt=save-temps \
3 ; RUN: -plugin-opt=O0 -r -o %t.o %t.bc
5 ; RUN: %gold -plugin %llvmshlibdir/LLVMgold.so -plugin-opt=save-temps \
6 ; RUN: -plugin-opt=O1 -r -o %t.o %t.bc
8 ; RUN: %gold -plugin %llvmshlibdir/LLVMgold.so -plugin-opt=save-temps \
9 ; RUN: -plugin-opt=O2 -r -o %t.o %t.bc
Ddisable-verify.ll4 ; RUN: %gold -m elf_x86_64 -plugin %llvmshlibdir/LLVMgold.so \
5 ; RUN: --plugin-opt=disable-verify \
6 ; RUN: --plugin-opt=-debug-pass=Arguments \
9 ; RUN: %gold -m elf_x86_64 -plugin %llvmshlibdir/LLVMgold.so \
10 ; RUN: --plugin-opt=-debug-pass=Arguments \
Dcommon.ll4 ; RUN: %gold -plugin %llvmshlibdir/LLVMgold.so \
5 ; RUN: --plugin-opt=emit-llvm \
14 ; RUN: %gold -plugin %llvmshlibdir/LLVMgold.so \
15 ; RUN: --plugin-opt=emit-llvm \
23 ; RUN: %gold -plugin %llvmshlibdir/LLVMgold.so \
24 ; RUN: --plugin-opt=emit-llvm \
Demit-llvm.ll3 ; RUN: %gold -plugin %llvmshlibdir/LLVMgold.so \
4 ; RUN: --plugin-opt=emit-llvm \
5 ; RUN: --plugin-opt=generate-api-file \
10 ; RUN: %gold -plugin %llvmshlibdir/LLVMgold.so \
11 ; RUN: -m elf_x86_64 --plugin-opt=save-temps \
19 ; RUN: %gold -plugin %llvmshlibdir/LLVMgold.so \
20 ; RUN: -m elf_x86_64 --plugin-opt=disable-output \
/external/icu/icu4c/source/tools/icuinfo/
Dicuplugins_windows_sample.txt12 # Then, ICU will load the test plugin from either the debug or non-debug
13 # plugin DLL (depending on whether ICU is in debug or non-debug state).
29 # ENTRYPOINT is the short (undecorated) symbol name of the plugin's entrypoint.
32 # CONFIGURATION is the entire rest of the line. It's passed as-is to the plugin.
39 ## A high level test plugin that does nothing.
42 ## A "bad" plugin that is low level but performs a malloc.
47 ## A "high-level" plugin that does nothing.
51 ## A "low-level" plugin that does nothing.
55 ## A low level plugin that just prints a message when uprv_malloc and related functions are called
DMakefile.in38 distclean distclean-local dist dist-local check check-local plugin-check
78 PLUGIN=$(LIBPREFIX)plugin.$(SO)
97 plugin: $(PLUGIN)
99 plugin-check: $(PLUGIN) $(PLUGINFILE)
102 plugin plugin-check $(PLUGIN):
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
DUiPlugin.java24 private static UiPlugin plugin; field in UiPlugin
32 if (plugin == null) { in UiPlugin()
33 plugin = this; in UiPlugin()
49 plugin = null; in stop()
56 return plugin; in getDefault()
/external/ppp/pppd/plugins/rp-pppoe/
DMakefile.linux41 rp-pppoe.so: plugin.o discovery.o if.o common.o
42 $(CC) -o rp-pppoe.so -shared plugin.o discovery.o if.o common.o
53 plugin.o: plugin.c
54 $(CC) $(CFLAGS) -I../../.. -c -o plugin.o -fPIC plugin.c
/external/chromium-trace/catapult/third_party/gsutil/third_party/gcs-oauth2-boto-plugin/
DREADME.md1 # gcs-oauth2-boto-plugin
3 gcs-oauth2-boto-plugin is a Python application whose purpose is to behave as
4 an auth plugin for the [boto] auth plugin framework for use with [OAuth 2.0]
5 credentials for the Google Cloud Platform. This plugin is compatible with
11 For more information about how to use this plugin to access Google Cloud Storage
14 If you wish to use this plugin without using the PyPI install as instructed in
19 When using this plugin, you must specify a client ID and secret. We offer the
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/META-INF/
DECLIPSEF.SF15 Name: data/30/plugin/plugin.xml
21 Name: plugin.properties
27 Name: data/30/plugin/META-INF/MANIFEST.MF
39 Name: plugin.xml
72 Name: data/21/plugin/plugin.xml
/external/chromium-trace/catapult/third_party/flot/
DPLUGINS.md3 All you need to do to make a new plugin is creating an init function
18 Now, given that the plugin might run in many different places, it's
27 // plugin definition
38 Here is a simple debug plugin which alerts each of the series in the
86 This simple plugin illustrates a couple of points:
97 ## Shutting down a plugin ##
118 them because the plugin user may have several plots on the same page
119 where only one should use the plugin. In most cases it's probably a
120 good idea if the plugin is turned off rather than on per default, just
123 If the plugin needs options that are specific to each series, like the
[all …]
/external/nanopb-c/generator/
Dprotoc-gen-nanopb.bat2 :: This file is used to invoke nanopb_generator.py as a plugin
5 :: protoc --plugin=nanopb=..../protoc-gen-nanopb.bat --nanopb_out=dir foo.proto
9 :: --plugin= on the command line.
12 python "%mydir%\nanopb_generator.py" --protoc-plugin
/external/eigen/doc/
DPreprocessorDirectives.dox82 It is possible to add new methods to many fundamental classes in %Eigen by writing a plugin. As exp…
83 the section \ref ExtendingMatrixBase, the plugin is specified by defining a \c EIGEN_xxx_PLUGIN mac…
86 - \b EIGEN_ARRAY_PLUGIN - filename of plugin for extending the Array class.
87 - \b EIGEN_ARRAYBASE_PLUGIN - filename of plugin for extending the ArrayBase class.
88 - \b EIGEN_CWISE_PLUGIN - filename of plugin for extending the Cwise class.
89 - \b EIGEN_DENSEBASE_PLUGIN - filename of plugin for extending the DenseBase class.
90 …- \b EIGEN_DYNAMICSPARSEMATRIX_PLUGIN - filename of plugin for extending the DynamicSparseMatrix c…
91 - \b EIGEN_MATRIX_PLUGIN - filename of plugin for extending the Matrix class.
92 - \b EIGEN_MATRIXBASE_PLUGIN - filename of plugin for extending the MatrixBase class.
93 - \b EIGEN_PLAINOBJECTBASE_PLUGIN - filename of plugin for extending the PlainObjectBase class.
[all …]
/external/opencv/cxcore/src/
D_cxipp.h225 #define IPCV_DEF_MIN_MAX_LOC( flavor, srctype, extrtype, plugin ) \ argument
227 "ippiMinMaxIndx_" #flavor "_C1R", plugin, \
233 "ippiMinMaxIndx_" #flavor "_C1MR", plugin, \
254 #define IPCV_DEF_SUM_NOHINT( flavor, srctype, plugin ) \ argument
256 "ippiSum_" #flavor "_C1R", plugin, \
259 "ippiSum_" #flavor "_C2R", plugin, \
262 "ippiSum_" #flavor "_C3R", plugin, \
265 "ippiSum_" #flavor "_C4R", plugin, \
313 #define IPCV_DEF_NORM_NOHINT_C1( flavor, srctype, plugin ) \ argument
315 "ippiNorm_Inf_" #flavor "_C1R", plugin, \
[all …]
/external/parameter-framework/upstream/skeleton-subsystem/
DREADME.md1 # Skeleton plugin
3 This is a skeleton plugin i.e. the minimal plugin boilerplate.
11 does not install it. If you want to see a real-life plugin and makefiles, see

12345678910>>...21