Searched defs:plugins (Results 1 - 25 of 39) sorted by relevance

12

/external/webkit/Source/WebKit/mac/Plugins/
H A DWebPluginDatabase.h36 NSMutableDictionary *plugins; variable
40 // Set of views with plugins attached
53 - (NSArray *)plugins;
/external/chromium/chrome/browser/
H A Dmock_plugin_exceptions_table_model.cc15 std::vector<webkit::npapi::PluginGroup>& plugins) {
16 plugins_ = plugins;
14 set_plugins( std::vector<webkit::npapi::PluginGroup>& plugins) argument
H A Dplugin_exceptions_table_model.cc141 std::vector<webkit::npapi::PluginGroup> plugins; local
142 GetPlugins(&plugins);
143 for (size_t i = 0; i < plugins.size(); ++i) {
144 std::string plugin = plugins[i].identifier();
155 string16 title = plugins[i].GetGroupName();
H A Dplugin_exceptions_table_model_unittest.cc15 #include "webkit/plugins/npapi/plugin_group.h"
16 #include "webkit/plugins/npapi/webplugininfo.h"
87 std::vector<webkit::npapi::PluginGroup> plugins; local
95 plugins.push_back(*foo_group);
104 plugins.push_back(*bar_group);
106 table_model_->set_plugins(plugins);
134 // Consecutive runs of plugins with id |x| are |row_counts[x]| long.
H A Dpdf_unsupported_feature.cc26 #include "webkit/plugins/npapi/plugin_group.h"
27 #include "webkit/plugins/npapi/plugin_list.h"
28 #include "webkit/plugins/npapi/webplugininfo.h"
245 std::vector<WebPluginInfo> plugins = reader_group->web_plugin_infos(); local
246 DCHECK_EQ(plugins.size(), 1u);
247 reader_webplugininfo_ = plugins[0];
H A Dplugin_updater.cc23 #include "webkit/plugins/npapi/plugin_list.h"
24 #include "webkit/plugins/npapi/webplugininfo.h"
233 // We want to save this, but doing so requires loading the list of plugins,
235 // plugins are loaded after 30s by the metrics service.
249 std::vector<webkit::npapi::WebPluginInfo> plugins; local
250 webkit::npapi::PluginList::Singleton()->GetPlugins(false, &plugins);
260 plugins, groups));
265 const std::vector<webkit::npapi::WebPluginInfo>& plugins,
277 for (size_t i = 0; i < plugins.size(); ++i) {
278 DictionaryValue* summary = CreatePluginFileSummary(plugins[
263 OnUpdatePreferences( Profile* profile, const std::vector<webkit::npapi::WebPluginInfo>& plugins, const std::vector<webkit::npapi::PluginGroup>& groups) argument
[all...]
/external/webkit/Source/WebCore/plugins/android/
H A DPluginDataAndroid.cpp39 const Vector<PluginPackage*> &plugins = db->plugins(); local
41 for (unsigned int i = 0; i < plugins.size(); ++i) {
43 PluginPackage* package = plugins[i];
/external/webkit/Source/WebCore/plugins/gtk/
H A DPluginDataGtk.cpp33 const Vector<PluginPackage*> &plugins = db->plugins(); local
35 for (unsigned int i = 0; i < plugins.size(); ++i) {
37 PluginPackage* package = plugins[i];
/external/webkit/Source/WebCore/plugins/wx/
H A DPluginDataWx.cpp39 const Vector<PluginPackage*> &plugins = db->plugins(); local
41 for (unsigned int i = 0; i < plugins.size(); ++i) {
43 PluginPackage* package = plugins[i];
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
H A DWebPlatformStrategies.cpp91 void WebPlatformStrategies::getPluginInfo(const WebCore::Page*, Vector<WebCore::PluginInfo>& plugins) argument
94 plugins = m_cachedPlugins;
104 Vector<PluginInfo> plugins; local
108 Messages::WebContext::GetPlugins::Reply(plugins), 0);
110 m_cachedPlugins.swap(plugins);
/external/webkit/Tools/DumpRenderTree/qt/
H A Dtestplugin.cpp39 QList<QWebPluginFactory::Plugin> TestPlugin::plugins() const function in class:TestPlugin
/external/clang/lib/StaticAnalyzer/Frontend/
H A DCheckerRegistration.cpp42 ClangCheckerRegistry(ArrayRef<std::string> plugins,
48 ClangCheckerRegistry::ClangCheckerRegistry(ArrayRef<std::string> plugins, argument
52 for (ArrayRef<std::string>::iterator i = plugins.begin(), e = plugins.end();
105 ArrayRef<std::string> plugins,
115 ClangCheckerRegistry allCheckers(plugins, &diags);
128 void ento::printCheckerHelp(raw_ostream &out, ArrayRef<std::string> plugins) { argument
132 ClangCheckerRegistry(plugins).printHelp(out);
103 createCheckerManager(const AnalyzerOptions &opts, const LangOptions &langOpts, ArrayRef<std::string> plugins, DiagnosticsEngine &diags) argument
/external/webkit/Source/WebCore/plugins/
H A DDOMPluginArray.cpp45 return data->plugins().size();
53 const Vector<PluginInfo>& plugins = data->plugins(); local
54 if (index >= plugins.size())
64 const Vector<PluginInfo>& plugins = data->plugins(); local
65 for (unsigned i = 0; i < plugins.size(); ++i) {
66 if (plugins[i].name == propertyName)
77 const Vector<PluginInfo>& plugins = data->plugins(); local
[all...]
H A DPluginData.h55 const Vector<PluginInfo>& plugins() const { return m_plugins; } function in class:WebCore::PluginData
/external/webkit/Source/WebCore/plugins/chromium/
H A DPluginDataChromium.cpp50 const Vector<PluginInfo>& plugins() function in class:WebCore::PluginCache
53 PlatformBridge::plugins(m_refresh, &m_plugins);
70 const Vector<PluginInfo>& plugins = pluginCache.plugins(); local
71 for (size_t i = 0; i < plugins.size(); ++i)
72 m_plugins.append(plugins[i]);
78 pluginCache.plugins(); // Force the plugins to be reloaded now.
83 const Vector<PluginInfo>& plugins = pluginCache.plugins(); local
[all...]
/external/webkit/Source/WebKit/gtk/webkit/
H A Dwebkitwebplugindatabase.cpp29 * @short_description: Provides information about the plugins the engine knows about
32 * This object allows you to query information about the plugins found
35 * enable/disable individual plugins.
102 const Vector<PluginPackage*>& plugins = database->priv->coreDatabase->plugins(); local
104 for (unsigned int i = 0; i < plugins.size(); ++i) {
105 PluginPackage* plugin = plugins[i];
136 * Refreshes @database adding new plugins that are now in use and
/external/webkit/Source/WebKit/win/WebCoreSupport/
H A DWebPlatformStrategies.cpp71 const Vector<PluginPackage*>& plugins = PluginDatabase::installedPlugins()->plugins(); local
73 outPlugins.resize(plugins.size());
75 for (size_t i = 0; i < plugins.size(); ++i) {
76 PluginPackage* package = plugins[i];
/external/bluetooth/bluez/src/
H A Dplugin.c42 static GSList *plugins = NULL; variable
80 plugins = g_slist_insert_sorted(plugins, plugin, compare_priority);
132 * plugins are loaded. */
152 DBG("Loading builtin plugins");
165 DBG("Loading plugins %s", PLUGINDIR);
212 for (list = plugins; list; list = list->next) {
234 DBG("Cleanup plugins");
236 for (list = plugins; list; list = list->next) {
248 g_slist_free(plugins);
[all...]
/external/chromium/chrome/browser/sync/glue/
H A Dextension_util_unittest.cc69 ListValue* plugins = new ListValue(); local
73 plugins->Set(i, plugin);
75 source.Set(extension_manifest_keys::kPlugins, plugins);
138 // These last 2 tests don't make sense on Chrome OS, where extension plugins
/external/chromium/chrome/common/
H A Dchrome_content_client.cc44 // Appends the known built-in plugins to the given vector. Some built-in
45 // plugins are "internal" which means they are compiled into the Chrome binary,
48 // regular plugins).
49 void ComputeBuiltInPlugins(std::vector<PepperPluginInfo>* plugins) { argument
67 plugins->push_back(pdf);
87 plugins->push_back(nacl);
109 plugins->push_back(info);
114 void AddOutOfProcessFlash(std::vector<PepperPluginInfo>* plugins) { argument
115 // Flash being out of process is handled separately than general plugins
160 plugins
179 AddPepperPlugins( std::vector<PepperPluginInfo>* plugins) argument
[all...]
/external/webkit/Source/WebCore/page/
H A DNavigator.cpp134 DOMPluginArray* Navigator::plugins() const function in class:WebCore::Navigator
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebplugindatabase.cpp176 Disabled plugins will not be picked up by WebKit when looking for a plugin
240 Netscape plugins used by WebKit in QWebPages.
242 The QWebPluginDatabase class is a database of Netscape plugins that are used
243 by WebKit. The plugins are picked up by WebKit by looking up a set of search paths.
248 The plugins that have been detected are exposed by the plugins() method.
250 types that are supported by particular plugins.
273 Returns a list of plugins installed in the search paths.
275 This list will contain disabled plugins, although they will not be used by
280 QList<QWebPluginInfo> QWebPluginDatabase::plugins() cons function in class:QWebPluginDatabase
283 const Vector<PluginPackage*>& plugins = m_database->plugins(); local
[all...]
/external/webkit/Source/WebKit2/UIProcess/Plugins/
H A DPluginInfoStore.cpp110 void PluginInfoStore::getPlugins(Vector<PluginInfo>& plugins) argument
115 plugins.append(m_plugins[i].info);
126 const Vector<PluginInfoStore::Plugin>& PluginInfoStore::plugins() function in class:WebKit::PluginInfoStore
/external/chromium/chrome/browser/ui/gtk/
H A Dcontent_setting_bubble_gtk.cc29 #include "webkit/plugins/npapi/plugin_list.h"
104 const std::set<std::string>& plugins = content.resource_identifiers; local
105 if (!plugins.empty()) {
108 for (std::set<std::string>::const_iterator it = plugins.begin();
109 it != plugins.end(); ++it) {
/external/chromium/chrome/browser/ui/views/
H A Dcontent_setting_bubble_contents.cc31 #include "webkit/glue/plugins/plugin_list.h"
213 const std::set<std::string>& plugins = bubble_content.resource_identifiers; local
214 if (!plugins.empty()) {
217 for (std::set<std::string>::const_iterator it = plugins.begin();
218 it != plugins.end(); ++it) {

Completed in 1407 milliseconds

12