Searched refs:plugin (Results 1 - 25 of 304) sorted by relevance

1234567891011>>

/external/nanopb-c/generator/
H A Dprotoc-gen-nanopb3 # This file is used to invoke nanopb_generator.py as a plugin
6 # protoc --plugin=nanopb=..../protoc-gen-nanopb --nanopb_out=dir foo.proto
10 # --plugin= on the command line.
13 exec python "$MYPATH/nanopb_generator.py" --protoc-plugin
/external/chromium_org/ppapi/native_client/src/trusted/plugin/
H A Dutility.h21 namespace plugin { namespace
45 if (-1 == ::plugin::gNaClPluginDebugPrintEnabled) { \
46 ::plugin::gNaClPluginDebugPrintEnabled = \
47 ::plugin::NaClPluginDebugPrintCheckEnv(); \
53 if (0 != ::plugin::gNaClPluginDebugPrintEnabled) { \
54 ::plugin::NaClPluginPrintLog("PLUGIN %" NACL_PRIu64 ": ", \
56 ::plugin::NaClPluginPrintLog args; \
64 if (0 != ::plugin::gNaClPluginDebugPrintEnabled) { \
65 ::plugin::NaClPluginPrintLog("MODULE: "); \
66 ::plugin
[all...]
H A Dsel_ldr_launcher_chrome.cc7 #include "ppapi/native_client/src/trusted/plugin/sel_ldr_launcher_chrome.h"
9 namespace plugin { namespace
21 } // namespace plugin
H A Dmodule_ppapi.cc12 #include "ppapi/native_client/src/trusted/plugin/module_ppapi.h"
13 #include "ppapi/native_client/src/trusted/plugin/plugin.h"
14 #include "ppapi/native_client/src/trusted/plugin/utility.h"
16 namespace plugin { namespace
48 // NaCl trusted plugin on Unix, but NaClSecureRngModuleInit() is
54 // In the plugin, we don't need high resolution time of day.
71 Plugin* plugin = new Plugin(pp_instance); local
73 static_cast<void* >(plugin)));
74 return plugin;
[all...]
H A Dsel_ldr_launcher_chrome.h13 namespace plugin { namespace
24 } // namespace plugin
/external/lldb/test/functionalities/plugins/commands/
H A DMakefile8 clang++ -O0 -g -stdlib=libc++ -dynamiclib -o plugin.dylib plugin.cpp -framework LLDB -F $(LLDB_FRAMEWORK)/..
11 rm -rf plugin.dylib plugin.dylib.dSYM/* plugin.dylib.dSYM
/external/chromium_org/tools/android/findbugs_plugin/test/java/src/org/chromium/tools/findbugs/plugin/
H A DSimpleSynchronizedMethod.java5 package org.chromium.tools.findbugs.plugin;
H A DSimpleSynchronizedStaticMethod.java5 package org.chromium.tools.findbugs.plugin;
H A DSimpleSynchronizedThis.java5 package org.chromium.tools.findbugs.plugin;
/external/clang/examples/
H A DMakefile12 PARALLEL_DIRS := analyzer-plugin clang-interpreter PrintFunctionNames
/external/emma/
H A Dbuild.gradle5 apply plugin: 'java'
6 apply plugin: 'sdk-java-lib'
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/plugin_settings/css/
H A Dplugin_list.css14 .plugin-list {
20 .plugin-list > li {
24 .plugin-name {
35 .plugin-show-details .num-rules {
39 .plugin-description {
48 .plugin-details {
59 .plugin-measure-details .plugin-details {
65 li.plugin-show-details {
69 .plugin
[all...]
/external/jarjar/lib/
H A Dmaven-plugin-api.jar ... MF org/ org/apache/ org/apache/maven/ org/apache/maven/plugin/ org/apache/maven/plugin/logging/ org/apache/maven/plugin/ContextEnabled
/external/chromium_org/chrome/browser/plugins/
H A Dplugin_finder_unittest.cc24 const base::DictionaryValue* plugin = NULL; local
25 ASSERT_TRUE(plugin_it.value().GetAsDictionary(&plugin));
28 if (plugin->HasKey("lang"))
29 EXPECT_TRUE(plugin->GetString("lang", &dummy_str));
30 if (plugin->HasKey("url"))
31 EXPECT_TRUE(plugin->GetString("url", &dummy_str));
32 EXPECT_TRUE(plugin->GetString("name", &dummy_str));
33 if (plugin->HasKey("help_url"))
34 EXPECT_TRUE(plugin->GetString("help_url", &dummy_str));
35 if (plugin
[all...]
/external/chromium_org/content/common/
H A Dpepper_renderer_instance_data.cc18 const GURL& plugin)
22 plugin_url(plugin) {
14 PepperRendererInstanceData( int render_process, int render_frame, const GURL& document, const GURL& plugin) argument
H A Dpepper_plugin_list.cc26 // On Linux, once we're sandboxed, we can't know if a plugin is available or
29 // flag if the plugin file is available. Then we can skip the check on file
50 // command-line = <plugin-entry> + *( LWS + "," + LWS + <plugin-entry> )
51 // plugin-entry =
77 PepperPluginInfo plugin; local
78 plugin.is_out_of_process = out_of_process;
83 plugin.path = base::FilePath(base::ASCIIToUTF16(name_parts[0]));
85 plugin.path = base::FilePath(name_parts[0]);
90 if (base::PathExists(plugin
[all...]
/external/chromium_org/content/shell/browser/
H A Dshell_plugin_service_filter.cc22 WebPluginInfo* plugin) {
23 return plugin->name == base::ASCIIToUTF16("WebKit Test PlugIn");
16 IsPluginAvailable( int render_process_id, int render_frame_id, const void* context, const GURL& url, const GURL& policy_url, WebPluginInfo* plugin) argument
/external/chromium_org/ppapi/examples/crxfs/
H A Dcrxfs.js6 var plugin = document.getElementById("plugin");
8 plugin.postMessage(filename);
16 // Attach a listener for the message event. This must happen after the plugin
18 document.getElementById("plugin")
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebPluginLoadObserver.cpp48 m_pluginContainer->plugin()->didFinishLoadingFrameRequest(m_notifyURL, m_notifyData);
54 m_pluginContainer->plugin()->didFailLoadingFrameRequest(m_notifyURL, m_notifyData, error);
/external/chromium_org/tools/android/findbugs_plugin/lib/
H A DchromiumPlugin.jar ... chromium/tools/ org/chromium/tools/findbugs/ org/chromium/tools/findbugs/plugin/ findbugs.xml messages.xml org/chromium/tools/findbugs ...
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
H A DPepperPluginManager.java29 * Service Action: A plugin wishes to be loaded in the ContentView must
36 // A plugin will specify the following fields in its AndroidManifest.xml.
44 // Find the name of the plugin's shared library.
49 // Find the mimetype of the plugin. Flash is handled in getFlashPath.
54 // Assemble the plugin info, according to the format described in
57 StringBuffer plugin = new StringBuffer(PEPPER_PLUGIN_ROOT);
58 plugin.append(filename);
60 // Find the (optional) name/description/version of the plugin.
66 plugin.append("#");
67 plugin
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
H A DUiPlugin.java20 * The main plugin class to be used in the desktop.
24 private static UiPlugin plugin; field in class:UiPlugin
32 if (plugin == null) {
33 plugin = this;
49 plugin = null;
56 return plugin;
/external/chromium_org/third_party/WebKit/public/web/
H A DWebHelperPlugin.h48 // Returns a WebPlugin corresponding to the instantiated plugin. This will
65 static void deletePtr(blink::WebHelperPlugin* plugin) argument
67 if (plugin)
68 plugin->destroy();
/external/chromium_org/chrome/browser/resources/
H A Dplugins.js43 * template expects each plugin's format to match the following structure to
54 * identifier: 'plugin-name',
57 * path: '/blahblah/blahblah/MyCrappyPlugin.plugin',
60 * description: 'My crappy plugin',
72 * path: '/tmp/MyFirst.plugin',
75 * description: 'My first plugin',
84 * path: '/foobar/baz/YourGreatPlugin.plugin',
87 * description: 'Your great plugin',
96 * path: '/foobiz/bar/HisGreatPlugin.plugin',
99 * description: 'His great plugin',
[all...]
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/
H A DEnvironmentUtils.java13 import org.eclipse.ui.plugin.AbstractUIPlugin;

Completed in 879 milliseconds

1234567891011>>