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

1 2 3 4

  /external/chromium_org/third_party/WebKit/Source/core/plugins/
PluginArray.idl 25 getter Plugin item([Default=Undefined] optional unsigned long index);
26 Plugin namedItem([Default=Undefined] optional DOMString name);
27 [NotEnumerable, ImplementedAs=namedItem] getter Plugin ([Default=Undefined] optional DOMString name);
MimeType.idl 27 readonly attribute Plugin enabledPlugin;
DOMPlugin.h 32 class Plugin;
Plugin.idl 23 ] interface Plugin {
  /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...]
Plugin.java 27 * Represents a plugin (Java equivalent of the PluginPackageAndroid
35 public class Plugin {
62 public Plugin(String name,
174 * Invokes the click handler for this plugin.
201 // string of the plugin.
  /external/chromium_org/ppapi/native_client/src/trusted/plugin/
scriptable_plugin.h 17 #include "ppapi/native_client/src/trusted/plugin/utility.h"
19 namespace plugin { namespace
22 class Plugin;
28 static ScriptablePlugin* NewPlugin(Plugin* plugin);
35 // Get the contained plugin object. NULL if this contains a descriptor.
36 Plugin* plugin() const { return plugin_; } function in class:plugin::ScriptablePlugin
39 // plugin with the browser. Since reference counting on the browser side is
50 // Returns true for preloaded NaCl Plugin properties
    [all...]
temporary_file.h 15 namespace plugin { namespace
17 class Plugin;
41 explicit TempFile(Plugin* plugin);
70 Plugin* plugin_;
84 } // namespace plugin
plugin.cc 10 #include "ppapi/native_client/src/trusted/plugin/plugin.h"
56 #include "ppapi/native_client/src/trusted/plugin/file_utils.h"
57 #include "ppapi/native_client/src/trusted/plugin/json_manifest.h"
58 #include "ppapi/native_client/src/trusted/plugin/module_ppapi.h"
59 #include "ppapi/native_client/src/trusted/plugin/nacl_entry_points.h"
60 #include "ppapi/native_client/src/trusted/plugin/nacl_subprocess.h"
61 #include "ppapi/native_client/src/trusted/plugin/nexe_arch.h"
62 #include "ppapi/native_client/src/trusted/plugin/plugin_error.h"
63 #include "ppapi/native_client/src/trusted/plugin/scriptable_plugin.h
67 namespace plugin { namespace
636 Plugin* plugin = new Plugin(pp_instance); local
1471 Plugin* plugin = static_cast<Plugin*>(instance); local
    [all...]
pnacl_resources.h 18 #include "ppapi/native_client/src/trusted/plugin/nexe_arch.h"
19 #include "ppapi/native_client/src/trusted/plugin/plugin_error.h"
21 namespace plugin { namespace
24 class Plugin;
54 PnaclResources(Plugin* plugin,
57 : plugin_(plugin),
85 static int32_t GetPnaclFD(Plugin* plugin, const char* filename);
90 // The plugin requesting the resource loading
    [all...]
local_temp_file.h 23 namespace plugin { namespace
25 class Plugin;
48 LocalTempFile(Plugin* plugin,
52 LocalTempFile(Plugin* plugin,
103 Plugin* plugin_;
131 } // namespace plugin
pnacl_translate_thread.h 19 #include "ppapi/native_client/src/trusted/plugin/plugin_error.h"
20 #include "ppapi/native_client/src/trusted/plugin/service_runtime.h"
27 namespace plugin { namespace
31 class Plugin;
59 Plugin* plugin);
62 // channel on the plugin side, which causes the trusted code in the nexe to
130 Plugin* plugin_;
plugin.h 7 // The PPAPI version of the plugin instantiates a subclass of this class.
33 #include "ppapi/native_client/src/trusted/plugin/file_downloader.h"
34 #include "ppapi/native_client/src/trusted/plugin/nacl_subprocess.h"
35 #include "ppapi/native_client/src/trusted/plugin/pnacl_coordinator.h"
36 #include "ppapi/native_client/src/trusted/plugin/service_runtime.h"
37 #include "ppapi/native_client/src/trusted/plugin/utility.h"
60 namespace plugin { namespace
67 class Plugin : public pp::InstancePrivate {
70 static Plugin* New(PP_Instance instance);
74 // Initializes this plugin with <embed/object ...> tag attribute count |argc|
185 Plugin* plugin() const { return const_cast<Plugin*>(this); } function in class:plugin::Plugin
    [all...]
module_ppapi.cc 12 #include "ppapi/native_client/src/trusted/plugin/module_ppapi.h"
13 #include "ppapi/native_client/src/trusted/plugin/nacl_entry_points.h"
14 #include "ppapi/native_client/src/trusted/plugin/plugin.h"
16 namespace plugin { namespace
50 // NaCl trusted plugin on Unix, but NaClSecureRngModuleInit() is
56 // In the plugin, we don't need high resolution time of day.
73 Plugin* plugin = Plugin::New(pp_instance) local
    [all...]
file_downloader.h 20 #include "ppapi/native_client/src/trusted/plugin/callback_source.h"
23 namespace plugin { namespace
25 class Plugin;
65 void Initialize(Plugin* instance);
175 Plugin* instance_;
198 } // namespace plugin;
nacl_subprocess.h 5 // Instances of NaCl modules spun up within the plugin as a subprocess.
7 // that perform various tasks within the plugin, for example,
20 #include "ppapi/native_client/src/trusted/plugin/service_runtime.h"
21 #include "ppapi/native_client/src/trusted/plugin/srpc_client.h"
23 namespace plugin { namespace
25 class Plugin;
30 // A class representing an instance of a NaCl module, loaded by the plugin.
89 } // namespace plugin
pnacl_coordinator.h 25 #include "ppapi/native_client/src/trusted/plugin/callback_source.h"
26 #include "ppapi/native_client/src/trusted/plugin/file_downloader.h"
27 #include "ppapi/native_client/src/trusted/plugin/local_temp_file.h"
28 #include "ppapi/native_client/src/trusted/plugin/nacl_subprocess.h"
29 #include "ppapi/native_client/src/trusted/plugin/plugin_error.h"
30 #include "ppapi/native_client/src/trusted/plugin/pnacl_options.h"
31 #include "ppapi/native_client/src/trusted/plugin/pnacl_resources.h"
34 namespace plugin { namespace
37 class Plugin;
42 // A class invoked by Plugin to handle PNaCl client-side translation
    [all...]
srpc_client.h 17 #include "ppapi/native_client/src/trusted/plugin/utility.h"
23 namespace plugin { namespace
27 class Plugin;
65 } // namespace plugin
service_runtime.h 29 #include "ppapi/native_client/src/trusted/plugin/utility.h"
41 namespace plugin { namespace
45 class Plugin;
167 Plugin* plugin,
235 Plugin* plugin_; // value may be copied, but should be used only in
255 ServiceRuntime(Plugin* plugin,
289 Plugin* plugin() const { return plugin_; function in class:plugin::ServiceRuntime
    [all...]
temporary_file.cc 5 #include "ppapi/native_client/src/trusted/plugin/temporary_file.h"
16 #include "ppapi/native_client/src/trusted/plugin/plugin.h"
17 #include "ppapi/native_client/src/trusted/plugin/utility.h"
24 namespace plugin { namespace
28 TempFile::TempFile(Plugin* plugin) : plugin_(plugin),
118 } // namespace plugin
local_temp_file.cc 5 #include "ppapi/native_client/src/trusted/plugin/local_temp_file.h"
15 #include "ppapi/native_client/src/trusted/plugin/plugin.h"
16 #include "ppapi/native_client/src/trusted/plugin/utility.h"
21 namespace plugin { namespace
50 LocalTempFile::LocalTempFile(Plugin* plugin,
53 : plugin_(plugin),
56 PLUGIN_PRINTF(("LocalTempFile::LocalTempFile (plugin=%p, "
58 static_cast<void*>(plugin), static_cast<void*>(file_system)))
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
UiPlugin.java 13 import org.eclipse.core.runtime.Plugin;
20 * The main plugin class to be used in the desktop.
22 public class UiPlugin extends Plugin {
24 private static UiPlugin plugin; field in class:UiPlugin
32 if (plugin == null) {
33 plugin = this;
49 plugin = null;
56 return plugin;
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/tests/
EclipseTestCollector.java 18 import org.eclipse.core.runtime.Plugin;
28 * Class for collecting all test cases in an eclipse plugin
41 * Searches through given plugin, adding all TestCase classes to given suite
43 * @param plugin - Plugin to search for tests
48 public void addTestCases(TestSuite suite, Plugin plugin, String expectedPackage) {
49 if (plugin != null) {
50 Enumeration<?> entries = plugin.getBundle().findEntries("/", "*.class", true);
106 * Load the class given by the plugin aka bundle file pat
    [all...]
  /developers/build/buildSrc/src/main/groovy/com/example/android/samples/build/
SampleGenPlugin.groovy 18 import org.gradle.api.Plugin
22 * Plugin to expose build rules for sample generation and packaging.
24 class SampleGenPlugin implements Plugin {
  /external/clang/lib/Tooling/
CompilationDatabase.cpp 37 OwningPtr<CompilationDatabasePlugin> Plugin(It->instantiate());
39 Plugin->loadFromDirectory(BuildDirectory, DatabaseErrorMessage))

Completed in 156 milliseconds

1 2 3 4