Home
last modified time | relevance | path

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

12345678910>>...16

/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/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/
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
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 \
17 ; RUN: %gold -plugin %llvmshlibdir/LLVMgold.so \
18 ; RUN: -m elf_x86_64 --plugin-opt=disable-output \
Dlinkonce-weak.ll4 ; RUN: %gold -plugin %llvmshlibdir/LLVMgold.so \
5 ; RUN: --plugin-opt=emit-llvm \
9 ; RUN: %gold -plugin %llvmshlibdir/LLVMgold.so \
10 ; RUN: --plugin-opt=emit-llvm \
Ddrop-debug.ll1 ; RUN: %gold -plugin %llvmshlibdir/LLVMgold.so \
2 ; RUN: --plugin-opt=emit-llvm -shared %p/Inputs/drop-debug.bc \
8 ; CHECK: warning: LLVM gold plugin: ignoring debug info with an invalid version (1) in {{.*}}/Input…
/external/lldb/test/functionalities/plugins/commands/
DMakefile8 …clang++ -O0 -g -stdlib=libc++ -dynamiclib -o plugin.dylib plugin.cpp -framework LLDB -F $(LLDB_FRA…
11 rm -rf plugin.dylib plugin.dylib.dSYM/* plugin.dylib.dSYM
/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/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
/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/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/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/parameter-framework/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
/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/droiddriver/
Dbuild.gradle16 classpath 'com.github.dcendents:android-maven-plugin:1.2'
17 classpath 'com.jakewharton.sdkmanager:gradle-plugin:0.12.0'
20 classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.1'
29 apply plugin: 'android-sdk-manager'
30 apply plugin: 'com.android.library'
96 apply plugin: 'com.jfrog.bintray'
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
DGenerateExcludeListTask.java98 String plugin = ""; in readMap() local
100 plugin = line.substring(start, end); in readMap()
108 if ((version != "") && (plugin != "")) { in readMap()
109 String l = plugin + "_" + version + ".jar"; in readMap()

12345678910>>...16