Searched refs:plugins (Results 51 - 75 of 235) sorted by relevance

12345678910

/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_rss/
H A DfeedManipulationEclipse.sh19 for f in `find $ECLIPSE_HOME/plugins -maxdepth 1 -name "org.eclipse.ant.ui*.jar" -type f`; do unzip $f lib/*.jar -d $tmpfolder; done
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/plugin_settings/js/
H A Dplugin_settings.js42 chrome.contentSettings.plugins.clear(
73 chrome.contentSettings.plugins.set(
121 chrome.contentSettings.plugins.set({
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.runtime.compatibility_3.2.100.v20100505.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/tools/telemetry/telemetry/results/
H A Dhtml_output_formatter.py64 plugins = ''
67 plugins += f.read()
68 return plugins
122 html = html.replace('%plugins%', self._GetPlugins())
/external/chromium_org/chrome/common/extensions/
H A Dsync_type_unittest.cc6 #include "chrome/common/extensions/api/plugins/plugins_handler.h"
55 base::ListValue* plugins = new base::ListValue(); local
59 plugins->Set(i, plugin);
61 source.Set(keys::kPlugins, plugins);
65 base::ListValue* plugins = new base::ListValue(); local
66 plugins->Set(0, new base::StringValue("plugin"));
67 source.Set(keys::kPermissions, plugins);
247 // These plugin tests don't make sense on Chrome OS, where extension plugins
/external/chromium_org/chrome/browser/resources/options/
H A Doptions_page.js71 if (navigator.plugins['Shockwave Flash'])
/external/chromium_org/content/browser/
H A Dplugin_service_impl.cc67 // If on POSIX, we don't want to load the list of NPAPI plugins in-process as
70 // Can't load the plugins on the utility thread when in single process mode
120 const std::vector<WebPluginInfo>& plugins) {
121 target_loop->PostTask(FROM_HERE, base::Bind(callback, plugins));
198 // watch for changes in the paths that are expected to contain plugins.
224 // On ChromeOS the user can't install plugins anyway and on Windows all
225 // important plugins register themselves in the registry so no need to do that.
228 // that will track and if needed reload the list of plugins on runtime.
402 // Make sure plugins are loaded if necessary.
514 std::vector<WebPluginInfo>* plugins,
118 ForwardCallback(base::MessageLoopProxy* target_loop, const PluginService::GetPluginsCallback& callback, const std::vector<WebPluginInfo>& plugins) argument
510 GetPluginInfoArray( const GURL& url, const std::string& mime_type, bool allow_wildcard, std::vector<WebPluginInfo>* plugins, std::vector<std::string>* actual_mime_types) argument
533 std::vector<WebPluginInfo> plugins; local
558 std::vector<WebPluginInfo> plugins; local
621 std::vector<WebPluginInfo> plugins; local
797 GetInternalPlugins( std::vector<WebPluginInfo>* plugins) argument
[all...]
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
H A DPepperPluginManager.java21 * {@link PepperPluginManager} collects meta data about plugins from preloaded android apps
84 * Collects information about installed plugins and returns a plugin description
85 * string, which will be appended to for command line to load plugins.
88 * @return Description string for plugins
93 List<ResolveInfo> plugins = pm.queryIntentServices(
96 for (ResolveInfo info : plugins) {
/external/chromium_org/content/utility/
H A Dutility_thread_impl.cc133 std::vector<WebPluginInfo> plugins; local
140 plugin_paths[i], &plugins, &plugin))
/external/chromium_org/extensions/shell/common/
H A Dshell_content_client.cc30 // On Posix, plugins live in the module directory.
48 std::vector<content::PepperPluginInfo>* plugins) {
73 plugins->push_back(nacl);
47 AddPepperPlugins( std::vector<content::PepperPluginInfo>* plugins) argument
/external/proguard/build/
H A Dbuild.sh33 $GRADLE_HOME/lib/plugins/gradle-plugins-1.3.jar:\
H A Dmakefile13 GRADLE_JARS = $(GRADLE_HOME)/lib/plugins/gradle-plugins-1.3.jar \
/external/chromium_org/chrome/browser/plugins/
H A Dplugin_status_pref_setter.cc5 #include "chrome/browser/plugins/plugin_status_pref_setter.h"
11 #include "chrome/browser/plugins/plugin_data_remover_helper.h"
12 #include "chrome/browser/plugins/plugin_prefs.h"
62 const std::vector<content::WebPluginInfo>& plugins) {
60 GotPlugins( scoped_refptr<PluginPrefs> plugin_prefs, const std::vector<content::WebPluginInfo>& plugins) argument
/external/chromium_org/chrome/common/
H A Dchrome_content_client.h26 std::vector<content::PepperPluginInfo>* plugins) OVERRIDE;
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DNavigator.h63 DOMPluginArray* plugins() const;
/external/chromium_org/third_party/WebKit/Source/platform/plugins/
H A DPluginData.h55 const Vector<PluginInfo>& plugins() const { return m_plugins; } function in class:blink::PluginData
75 // Checks if any of the plugins handle this extension, and if so returns the
/external/mockito/src/org/mockito/internal/creation/
H A DCglibMockMaker.java13 import org.mockito.plugins.MockMaker;
/external/chromium_org/content/zygote/
H A Dzygote_main_linux.cc322 // access to the plugins before entering the sandbox.
324 std::vector<PepperPluginInfo> plugins; local
325 ComputePepperPluginList(&plugins);
326 for (size_t i = 0; i < plugins.size(); ++i) {
327 if (!plugins[i].is_internal && plugins[i].is_sandboxed) {
329 base::NativeLibrary library = base::LoadNativeLibrary(plugins[i].path,
332 << plugins[i].path.value() << " "
371 // Ensure access to the Pepper plugins before the sandbox is turned on.
/external/chromium_org/components/autofill/content/browser/risk/
H A Dfingerprint.cc94 // Adds the list of |plugins| to the |machine|.
95 void AddPluginsToFingerprint(const std::vector<content::WebPluginInfo>& plugins, argument
97 for (std::vector<content::WebPluginInfo>::const_iterator it = plugins.begin();
98 it != plugins.end(); ++it) {
209 void OnGotPlugins(const std::vector<content::WebPluginInfo>& plugins);
342 const std::vector<content::WebPluginInfo>& plugins) {
345 plugins_ = plugins;
341 OnGotPlugins( const std::vector<content::WebPluginInfo>& plugins) argument
/external/chromium_org/content/ppapi_plugin/
H A Dppapi_thread.cc262 // Trusted Pepper plugins may be "internal", i.e. built-in to the browser
265 std::vector<PepperPluginInfo> plugins; local
266 GetContentClient()->AddPepperPlugins(&plugins);
267 for (size_t i = 0; i < plugins.size(); ++i) {
268 if (plugins[i].is_internal && plugins[i].path == path) {
270 plugin_entry_points_ = plugins[i].internal_entry_points;
331 // regular plugins.
431 // again here. We don't want random plugins depending on this dev interface.
/external/dexmaker/src/mockito/java/com/google/dexmaker/mockito/
H A DDexmakerMockMaker.java28 import org.mockito.plugins.MockMaker;
29 import org.mockito.plugins.StackTraceCleanerProvider;
/external/mockito/src/org/mockito/internal/configuration/
H A DClassPathLoader.java10 import org.mockito.plugins.MockMaker;
11 import org.mockito.plugins.StackTraceCleanerProvider;
48 * <li>A file named <code>org.mockito.plugins.MockMaker</code> in a folder named
/external/chromium_org/chrome/renderer/plugins/
H A Dchrome_plugin_placeholder.cc5 #include "chrome/renderer/plugins/chrome_plugin_placeholder.h"
15 #include "chrome/renderer/plugins/plugin_uma.h"
45 const plugins::PluginPlaceholder* g_last_active_menu = NULL;
57 : plugins::PluginPlaceholder(render_frame,
208 // We don't swallow these messages because multiple blocked plugins and other
220 plugins::PluginPlaceholder::OnLoadBlockedPlugins(identifier);
229 plugins::PluginPlaceholder::OnSetIsPrerendering(is_prerendering);
H A Dchrome_plugin_placeholder.h8 #include "components/plugins/renderer/plugin_placeholder.h"
12 class ChromePluginPlaceholder : public plugins::PluginPlaceholder,
72 // Javascript callback opens chrome://plugins in a new tab.
/external/chromium_org/components/plugins/renderer/
H A Dplugin_placeholder.h8 #include "components/plugins/renderer/webview_plugin.h"
20 namespace plugins { namespace
113 } // namespace plugins

Completed in 775 milliseconds

12345678910