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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium/chrome/browser/
icon_manager_win.cc 10 std::wstring extension = filepath.Extension(); local
11 if (extension != L".exe" && extension != L".dll" && extension != L".ico")
12 return extension;
chrome_content_browser_client.cc 33 // Tell the RenderViewHost whether it will be used for an extension process.
39 const Extension* installed_app = service->GetInstalledApp(url);
65 // installed app, the effective URL is an extension URL with the ID of that
66 // extension as the host. This has the effect of grouping apps together in
71 const Extension* extension = local
73 if (!extension)
76 // If the URL is part of an extension's web extent, convert it to an
77 // extension URL.
78 return extension->GetResourceURL(url.path())
    [all...]
  /external/chromium/chrome/browser/extensions/
alert_apitest.cc 18 const Extension* extension = GetSingleLoadedExtension(); local
20 GetBackgroundHostForExtension(extension);
extension_context_menu_apitest.cc 25 const Extension* extension = GetSingleLoadedExtension(); local
26 ASSERT_TRUE(extension) << message_;
29 // Tell the extension to update the page action state.
32 extension->GetResourceURL("popup.html"));
37 // Tell the extension to update the page action state again.
40 extension->GetResourceURL("popup2.html"));
extension_module.cc 27 const Extension* extension = GetExtension(); local
30 ext_service->IsIncognitoEnabled(extension->id())));
36 const Extension* extension = GetExtension(); local
39 ext_service->AllowFileAccess(extension)));
extension_webnavigation_apitest.cc 93 // Wait for the extension to set itself up and return control to us.
99 const Extension* extension = local
101 GURL url = extension->GetResourceURL("a.html");
105 url = extension->GetResourceURL("b.html");
app_background_page_apitest.cc 13 #include "chrome/common/extensions/extension.h"
127 const Extension* extension = GetSingleLoadedExtension(); local
130 GetAppBackgroundContents(ASCIIToUTF16(extension->id())));
convert_web_app_browsertest.cc 11 #include "chrome/common/extensions/extension.h"
26 const Extension* installed_extension_;
39 const Extension* extension = Details<const Extension>(details).ptr(); local
40 if (extension->id() == expected_extension_id_) {
41 installed_extension_ = extension;
extension_infobar_module.cc 18 #include "chrome/common/extensions/extension.h"
36 const Extension* extension = GetExtension(); local
37 GURL url = extension->GetResourceURL(extension->url(), html_path);
page_action_apitest.cc 14 #include "chrome/common/extensions/extension.h"
21 const Extension* extension = GetSingleLoadedExtension(); local
22 ASSERT_TRUE(extension) << message_;
24 // Tell the extension to update the page action state.
27 GURL(extension->GetResourceURL("update.html")));
34 ExtensionAction* action = extension->page_action();
45 browser()->profile(), extension->id(), "", tab_id, "", 0);
50 // Tell the extension to update the page action state again.
53 GURL(extension->GetResourceURL("update2.html")))
66 const Extension* extension = GetSingleLoadedExtension(); local
112 const Extension* extension = GetSingleLoadedExtension(); local
141 const Extension* extension = GetSingleLoadedExtension(); local
167 const Extension* extension = GetSingleLoadedExtension(); local
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/
DateExtension.h 39 class DateExtension : public v8::Extension {
50 static DateExtension* extension; member in class:WebCore::DateExtension
  /external/chromium/chrome/browser/chromeos/
enterprise_extension_observer.cc 31 Extension* extension = Details<Extension>(details).ptr(); local
32 if (extension->location() != Extension::EXTERNAL_POLICY_DOWNLOAD) {
40 extension->path()));
  /external/guava/guava/src/com/google/common/collect/
BstPathFactory.java 32 P extension(P path, BstSide side); method in interface:BstPathFactory
  /external/webkit/Source/WebKit/qt/Api/
qwebpluginfactory.cpp 125 For example, a mime type for PDF documents would return "pdf" as its file extension.
200 \enum QWebPluginFactory::Extension
204 should verify that the extension is supported by calling supportsExtension().
213 \brief The ExtensionOption class provides an extended input argument to QWebPluginFactory's extension support.
217 \sa QWebPluginFactory::extension()
224 \brief The ExtensionOption class provides an extended output argument to QWebPluginFactory's extension support.
228 \sa QWebPluginFactory::extension()
233 argument is provided as input to the extension; the output results can be stored in \a output.
237 The behaviour of this function is determined by \a extension.
239 You can call supportsExtension() to check if an extension is supported by the factory
245 bool QWebPluginFactory::extension(Extension extension, const ExtensionOption *option, ExtensionReturn *output) function in class:QWebPluginFactory
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/extension/
SubjectKeyIdentifierStructure.java 1 package org.bouncycastle.x509.extension;
21 * @param encodedValue a DER octet encoded string with the extension structure in it.
  /external/chromium/chrome/browser/automation/
automation_extension_tracker.cc 8 #include "chrome/common/extensions/extension.h"
13 : AutomationResourceTracker<const Extension*>(automation) {
21 void AutomationExtensionTracker::AddObserver(const Extension* resource) {}
23 void AutomationExtensionTracker::RemoveObserver(const Extension* resource) {}
33 const Extension* extension = info->extension; local
38 // Remove this extension only if it is uninstalled, not just disabled.
39 CloseResource(extension);
  /external/chromium/chrome/browser/ui/app_modal_dialogs/
message_box_handler.cc 30 const Extension* extension = local
32 if (!extension)
33 extension = extensions_service->GetExtensionByWebExtent(frame_url);
35 if (extension && (extension->location() == Extension::COMPONENT)) {
37 } else if (extension && !extension->name().empty()) {
38 return UTF8ToWide(extension->name())
    [all...]
  /external/proguard/src/proguard/util/
ExtensionMatcher.java 24 * This StringMatcher tests whether strings end in a given extension, ignoring
31 private final String extension; field in class:ExtensionMatcher
36 * @param extension the extension against which strings will be matched.
38 public ExtensionMatcher(String extension)
40 this.extension = extension;
48 return endsWithIgnoreCase(string, extension);
  /external/webkit/Source/WebCore/platform/brew/
MIMETypeRegistryBrew.cpp 39 const char* extension; member in struct:WebCore::ExtensionMap
73 while (e->extension) {
74 if (str == e->extension)
  /external/webkit/Source/WebCore/platform/efl/
MIMETypeRegistryEfl.cpp 40 const char* extension; member in struct:WebCore::ExtensionMap
82 while (e->extension) {
83 if (s == e->extension)
  /external/webkit/Source/WebCore/platform/gtk/
MIMETypeRegistryGtk.cpp 37 const char* extension; member in struct:WebCore::ExtensionMap
72 while (e->extension) {
73 if (s == e->extension)
  /external/webkit/Source/WebCore/platform/haiku/
MIMETypeRegistryHaiku.cpp 40 const char* extension; member in struct:WebCore::ExtensionMap
73 while (extMap->extension) {
74 if (str == extMap->extension)
  /external/webkit/Source/WebCore/platform/qt/
MIMETypeRegistryQt.cpp 38 const char* extension; member in struct:WebCore::ExtensionMap
81 while (e->extension) {
82 if (s == e->extension)
  /external/webkit/Source/WebCore/platform/wx/
MimeTypeRegistryWx.cpp 37 const char* extension; member in struct:WebCore::ExtensionMap
69 while (e->extension) {
70 if (s == e->extension)
  /external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/matext/
MaterialExtensionSet.java 50 * Adds a new material extension to the set of extensions.
51 * @param extension The {@link MaterialExtension} to add.
53 public void addMaterialExtension(MaterialExtension extension){
54 extensions.put(extension.getBaseMaterialName(), extension); local

Completed in 873 milliseconds

1 2 3 4 5 6 7 8 91011>>