HomeSort by relevance Sort by last modified time
    Searched refs:plugin (Results 1 - 25 of 500) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/nanopb-c/generator/
protoc-gen-nanopb 3 # 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/
utility.h 21 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: ");
    [all...]
sel_ldr_launcher_chrome.cc 7 #include "ppapi/native_client/src/trusted/plugin/sel_ldr_launcher_chrome.h"
9 namespace plugin { namespace
21 } // namespace plugin
sel_ldr_launcher_chrome.h 13 namespace plugin { namespace
24 } // namespace plugin
  /external/lldb/test/functionalities/plugins/commands/
Makefile 8 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/
SimpleSynchronizedMethod.java 5 package org.chromium.tools.findbugs.plugin;
SimpleSynchronizedStaticMethod.java 5 package org.chromium.tools.findbugs.plugin;
SimpleSynchronizedThis.java 5 package org.chromium.tools.findbugs.plugin;
  /external/clang/examples/
Makefile 12 PARALLEL_DIRS := analyzer-plugin clang-interpreter PrintFunctionNames
  /external/emma/
build.gradle 5 apply plugin: 'java'
6 apply plugin: 'sdk-java-lib'
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/target-platform-configuration/0.20.0/
target-platform-configuration-0.20.0.jar 
  /external/chromium_org/third_party/WebKit/public/web/
WebHelperPlugin.h 48 // Returns a WebPlugin corresponding to the instantiated plugin. This will
65 static void deletePtr(blink::WebHelperPlugin* plugin)
67 if (plugin)
68 plugin->destroy();
  /frameworks/base/core/java/android/webkit/
PluginList.java 34 private ArrayList<Plugin> mPlugins;
45 mPlugins = new ArrayList<Plugin>();
61 * Adds a plugin to the list.
68 public synchronized void addPlugin(Plugin plugin) {
69 if (!mPlugins.contains(plugin)) {
70 mPlugins.add(plugin);
75 * Removes a plugin from the list.
82 public synchronized void removePlugin(Plugin plugin) {
111 Plugin plugin = mPlugins.get(position); local
    [all...]
  /external/jarjar/lib/
maven-plugin-api.jar 
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/plugin_settings/css/
plugin_list.css 14 .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-show-details .plugin-description
    [all...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/apache/maven/plugins/maven-deploy-plugin/2.5/
maven-deploy-plugin-2.5.jar 
  /external/chromium_org/chrome/browser/plugins/
plugin_finder_unittest.cc 24 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->HasKey("displayurl")
    [all...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/apache/maven/plugins/maven-clean-plugin/2.5/
maven-clean-plugin-2.5.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/apache/maven/plugins/maven-install-plugin/2.3.1/
maven-install-plugin-2.3.1.jar 
  /development/samples/devbytes/ui/ImmersiveMode/
build.gradle 25 apply plugin: 'android'
  /external/chromium_org/content/common/
pepper_renderer_instance_data.cc 18 const GURL& plugin)
22 plugin_url(plugin) {
  /external/chromium_org/content/shell/browser/
shell_plugin_service_filter.cc 22 WebPluginInfo* plugin) {
23 return plugin->name == base::ASCIIToUTF16("WebKit Test PlugIn");
  /external/chromium_org/third_party/WebKit/Source/web/
WebPluginLoadObserver.cpp 48 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/
chromiumPlugin.jar 
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
PepperPluginManager.java 29 * 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); local
58 plugin.append(filename);
60 // Find the (optional) name/description/version of the plugin.
66 plugin.append("#");
67 plugin.append(name)
119 String plugin = getPluginDescription(serviceInfo.metaData); local
    [all...]

Completed in 236 milliseconds

1 2 3 4 5 6 7 8 91011>>