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

1 2 3 4 5

  /external/webkit/Tools/DumpRenderTree/qt/
testplugin.cpp 39 QList<QWebPluginFactory::Plugin> TestPlugin::plugins() const
41 QWebPluginFactory::Plugin plugin; local
43 plugin.name = "testplugin";
44 plugin.description = "testdescription";
48 plugin.mimeTypes.append(mimeType);
50 plugin.name = "testplugin2";
51 plugin.description = "testdescription2";
55 plugin.mimeTypes.append(mimeType);
57 return QList<QWebPluginFactory::Plugin>() << plugin
    [all...]
  /external/webkit/Source/WebCore/plugins/
PluginData.cpp 39 const PluginInfo& plugin = m_plugins[i]; local
40 for (unsigned j = 0; j < plugin.mimes.size(); ++j) {
41 m_mimes.append(plugin.mimes[j]);
  /external/webkit/Source/WebKit/chromium/src/
WebPluginDocument.cpp 46 WebPlugin* WebPluginDocument::plugin() function in class:WebKit::WebPluginDocument
52 return container->plugin();
WebPluginContainerImpl.h 96 WebPlugin* plugin() { return m_webPlugin; } function in class:WebKit::WebPluginContainerImpl
97 void setPlugin(WebPlugin* plugin) { m_webPlugin = plugin; }
99 // Printing interface. The plugin can support custom printing
101 // Whether the plugin supports its own paginated print. The other print
116 // Resource load events for the plugin's source data:
ContextMenuClientImpl.cpp 218 WebPluginContainerImpl* plugin = static_cast<WebPluginContainerImpl*>(widget); local
219 WebString text = plugin->plugin()->selectionAsText();
225 data.linkURL = plugin->plugin()->linkAtPosition(data.mousePosition);
226 if (plugin->plugin()->supportsPaginatedPrint())
  /external/webkit/Source/WebKit/gtk/tests/
testwebplugindatabase.c 45 WebKitWebPlugin* plugin = (WebKitWebPlugin*)p->data; local
46 if (!g_strcmp0(webkit_web_plugin_get_name(plugin), "WebKit Test PlugIn") &&
47 !g_strcmp0(webkit_web_plugin_get_description(plugin), "Simple Netscape plug-in that handles test content for WebKit")) {
49 enabled = webkit_web_plugin_get_enabled(plugin);
50 webkit_web_plugin_set_enabled(plugin, FALSE);
61 WebKitWebPlugin* plugin = (WebKitWebPlugin*)p->data; local
62 if (!g_strcmp0(webkit_web_plugin_get_name(plugin), "WebKit Test PlugIn") &&
63 !g_strcmp0(webkit_web_plugin_get_description(plugin), "Simple Netscape plug-in that handles test content for WebKit")
    [all...]
  /external/webkit/Source/WebKit2/Shared/Plugins/
NPObjectMessageReceiver.h 41 class Plugin;
47 static PassOwnPtr<NPObjectMessageReceiver> create(NPRemoteObjectMap*, Plugin*, uint64_t npObjectID, NPObject*);
52 Plugin* plugin() const { return m_plugin; } function in class:WebKit::NPObjectMessageReceiver
56 NPObjectMessageReceiver(NPRemoteObjectMap*, Plugin*, uint64_t npObjectID, NPObject*);
71 Plugin* m_plugin;
NPObjectProxy.h 37 class Plugin;
43 static NPObjectProxy* create(NPRemoteObjectMap*, Plugin*, uint64_t npObjectID);
53 Plugin* plugin() const { return m_plugin; } function in class:WebKit::NPObjectProxy
62 void initialize(NPRemoteObjectMap*, Plugin*, uint64_t npObjectID);
88 Plugin* m_plugin;
  /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;
  /external/webkit/Source/WebCore/plugins/symbian/
PluginPackageSymbian.cpp 93 QObject* plugin = m_pluginLoader->instance(); local
94 if (!plugin) {
101 // Plugin instance created
102 // Cast plugin to NPInterface,
103 m_npInterface = qobject_cast<NPInterface*>(plugin);
  /external/webkit/Source/WebKit/gtk/webkit/
webkitwebplugindatabase.cpp 105 PluginPackage* plugin = plugins[i]; local
106 gPlugins = g_slist_append(gPlugins, kitNew(plugin));
webkitwebplugin.cpp 30 * @short_description: Represents a plugin, enabling fine-grained control
33 * This object represents a single plugin, found by WebKitGTK+ while
35 * get more information about a plugin, and enable/disable it,
63 WebKitWebPlugin* plugin = WEBKIT_WEB_PLUGIN(object); local
64 WebKitWebPluginPrivate* priv = plugin->priv;
71 delete plugin->priv;
78 WebKitWebPlugin* plugin = WEBKIT_WEB_PLUGIN(object); local
82 g_value_set_boolean(value, webkit_web_plugin_get_enabled(plugin));
91 WebKitWebPlugin* plugin = WEBKIT_WEB_PLUGIN(object); local
95 webkit_web_plugin_set_enabled(plugin, g_value_get_boolean(value))
130 WebKitWebPlugin* plugin = WEBKIT_WEB_PLUGIN(g_object_new(WEBKIT_TYPE_WEB_PLUGIN, 0)); local
    [all...]
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
QtPlatformPlugin.cpp 83 QWebKitPlatformPlugin* QtPlatformPlugin::plugin() function in class:WebCore::QtPlatformPlugin
92 // Plugin path is stored in a static variable to avoid searching for the plugin
107 QWebKitPlatformPlugin* p = plugin();
114 QWebKitPlatformPlugin* p = plugin();
120 QWebKitPlatformPlugin* p = plugin();
126 QWebKitPlatformPlugin* p = plugin();
133 QWebKitPlatformPlugin* p = plugin();
  /external/webkit/Source/WebKit2/UIProcess/Plugins/
PluginProcessManager.cpp 52 PluginInfoStore::Plugin plugin = pluginInfoStore->infoForPluginWithPath(pluginPath); local
53 PluginProcessProxy* pluginProcess = getOrCreatePluginProcess(plugin);
65 void PluginProcessManager::getSitesWithData(const PluginInfoStore::Plugin& plugin, WebPluginSiteDataManager* webPluginSiteDataManager, uint64_t callbackID)
67 PluginProcessProxy* pluginProcess = getOrCreatePluginProcess(plugin);
71 void PluginProcessManager::clearSiteData(const PluginInfoStore::Plugin& plugin, WebPluginSiteDataManager* webPluginSiteDataManager, const Vector<String>& sites, uint64_t flags, uint64_t maxAgeInSeconds, uint64_t callbackID)
73 PluginProcessProxy* pluginProcess = getOrCreatePluginProcess(plugin);
95 PluginProcessProxy* PluginProcessManager::getOrCreatePluginProcess(const PluginInfoStore::Plugin& plugin
    [all...]
PluginInfoStore.cpp 98 Plugin plugin; local
100 if (!getPluginInfo(pluginPath, plugin))
103 if (!shouldUsePlugin(plugin))
107 m_plugins.append(plugin);
126 const Vector<PluginInfoStore::Plugin>& PluginInfoStore::plugins()
133 PluginInfoStore::Plugin PluginInfoStore::findPluginForMIMEType(const String& mimeType)
138 const Plugin& plugin = m_plugins[i]; local
140 for (size_t j = 0; j < plugin.info.mimes.size(); ++j)
155 const Plugin& plugin = m_plugins[i]; local
199 Plugin plugin = findPluginForMIMEType(mimeType); local
207 Plugin plugin = findPluginForExtension(extension, mimeType); local
214 Plugin plugin = findPluginForMIMEType(extensionMimeType); local
    [all...]
  /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/chromium/chrome/browser/
plugin_data_remover.cc 77 DCHECK(result) << "Error waiting for plugin process";
109 NOTREACHED() << "Couldn't connect to plugin";
124 LOG(DFATAL) << "Couldn't open plugin channel";
171 webkit::npapi::WebPluginInfo plugin; local
174 GURL(), kFlashMimeType, allow_wildcard, &plugin, &mime_type)) {
178 webkit::npapi::PluginGroup::CreateVersionFromString(plugin.version));
184 return webkit::npapi::IsPluginEnabled(plugin) &&
plugin_exceptions_table_model.cc 50 // If we remove the last exception for a plugin, recreate all groups
144 std::string plugin = plugins[i].identifier(); local
147 plugin,
152 plugin,
182 resources_.push_back(plugin);
pdf_unsupported_feature.cc 136 PluginService::OverriddenPlugin plugin; local
137 plugin.render_process_id = tab->GetRenderProcessHost()->id();
138 plugin.render_view_id = tab->render_view_host()->routing_id();
139 plugin.url = tab->GetURL();
140 plugin.plugin = reader_plugin;
141 // The plugin is disabled, so enable it to get around the renderer check.
143 // plugin UI if it's vulnerable, since we already went through the
145 plugin.plugin.enabled = WebPluginInfo::USER_ENABLED
    [all...]
  /external/chromium/chrome/browser/sync/glue/
extension_util_unittest.cc 71 DictionaryValue* plugin = new DictionaryValue(); local
72 plugin->SetString(extension_manifest_keys::kPluginsPath, "");
73 plugins->Set(i, plugin);
  /external/webkit/Source/WebKit/mac/Plugins/
WebNetscapePluginStream.h 55 static PassRefPtr<WebNetscapePluginStream> create(NSURLRequest *request, NPP plugin, bool sendNotification, void* notifyData)
57 return adoptRef(new WebNetscapePluginStream(request, plugin, sendNotification, notifyData));
65 NPP plugin() const { return m_plugin; } function in class:WebNetscapePluginStream
  /frameworks/av/media/libstagefright/omx/
OMXMaster.cpp 70 void OMXMaster::addPlugin(OMXPluginBase *plugin) {
73 mPlugins.push_back(plugin);
79 while ((err = plugin->enumerateComponents(
90 mPluginByComponentName.add(name8, plugin);
94 ALOGE("OMX plugin failed w/ error 0x%08x after registering %d "
136 OMXPluginBase *plugin = mPluginByComponentName.valueAt(index); local
138 plugin->makeComponentInstance(name, callbacks, appData, component);
144 mPluginByInstance.add(*component, plugin);
159 OMXPluginBase *plugin = mPluginByInstance.valueAt(index); local
162 return plugin->destroyComponentInstance(component)
198 OMXPluginBase *plugin = mPluginByComponentName.valueAt(index); local
    [all...]
  /frameworks/base/tests/BrowserTestPlugin/jni/
PluginObject.cpp 141 PluginObject *plugin = (PluginObject *)obj; local
156 PluginObject *plugin = (PluginObject *)obj; local
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/
VersionCheck.java 38 * Class handling the version check for the plugin vs. the SDK.<br>
39 * The plugin must be able to support all version of the SDK.
41 * <p/>An SDK can require a new version of the plugin.
42 * <p/>The SDK contains a file with the minimum version for the plugin. This file is inside the
43 * <code>tools/lib</code> directory, and is called <code>plugin.prop</code>.<br>
44 * Inside that text file, there is a line in the format "plugin.version=#.#.#". This is checked
45 * against the current plugin version.<br>
55 * Pattern to get the minimum plugin version supported by the SDK. This is read from
56 * the file <code>$SDK/tools/lib/plugin.prop</code>.
59 "^plugin.version=(\\d+)\\.(\\d+)\\.(\\d+).*$"); //$NON-NLS-1
69 AdtPlugin plugin = AdtPlugin.getDefault(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/
GlTracePlugin.java 30 import org.eclipse.ui.plugin.AbstractUIPlugin;
42 private static GlTracePlugin plugin; field in class:GlTracePlugin
56 * org.eclipse.ui.plugin.AbstractUIPlugin#start(org.osgi.framework.BundleContext
62 plugin = this;
74 * org.eclipse.ui.plugin.AbstractUIPlugin#stop(org.osgi.framework.BundleContext
79 plugin = null;
89 return plugin;

Completed in 689 milliseconds

1 2 3 4 5