HomeSort by relevance Sort by last modified time
    Searched refs:extension (Results 151 - 175 of 780) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium/chrome/browser/ui/gtk/extensions/
extension_uninstall_dialog_gtk.cc 17 #include "chrome/common/extensions/extension.h"
41 const Extension* extension,
73 IDS_EXTENSION_UNINSTALL_PROMPT_HEADING, UTF8ToUTF16(extension->name()));
89 const Extension* extension,
104 ShowUninstallDialogGtk(browser_window->window(), icon, extension, delegate);
  /external/jmonkeyengine/engine/src/core/com/jme3/asset/
AssetKey.java 48 protected transient String extension; field in class:AssetKey
52 this.extension = getExtension(this.name);
86 * @return The extension of the <code>AssetKey</code>'s name. For example,
87 * the name "Interface/Logo/Monkey.png" has an extension of "png".
90 return extension;
200 extension = getExtension(name);
  /external/webkit/Source/WebCore/bindings/v8/
DateExtension.cpp 39 DateExtension* DateExtension::extension; member in class:WebCore::DateExtension
65 DateExtension::DateExtension() : v8::Extension(dateExtensionName, dateExtensionScript)
71 if (!extension)
72 extension = new DateExtension();
73 return extension;
  /external/webkit/Tools/TestWebKitAPI/
PlatformUtilities.h 49 WKURLRef createURLForResource(const char* resource, const char* extension);
  /external/webkit/Tools/TestWebKitAPI/mac/
PlatformUtilitiesMac.mm 55 WKURLRef createURLForResource(const char* resource, const char* extension)
57 NSURL *nsURL = [[NSBundle mainBundle] URLForResource:[NSString stringWithUTF8String:resource] withExtension:[NSString stringWithUTF8String:extension]];
  /packages/apps/Mms/src/com/android/mms/model/
VideoModel.java 76 String extension = MimeTypeMap.getFileExtensionFromUrl(mSrc); local
77 if (TextUtils.isEmpty(extension)) {
79 // urlEncoded strings. Let's try one last time at finding the extension.
82 extension = mSrc.substring(dotPos + 1);
85 mContentType = mimeTypeMap.getMimeTypeFromExtension(extension);
123 String extension = mSrc.substring(index + 1); local
124 if (!(TextUtils.isEmpty(extension)) &&
125 (extension.equalsIgnoreCase("3gp") ||
126 extension.equalsIgnoreCase("3gpp") ||
127 extension.equalsIgnoreCase("3g2")))
    [all...]
  /external/chromium/chrome/browser/extensions/
extension_crash_recovery_browsertest.cc 66 const Extension* extension = local
68 ASSERT_TRUE(extension);
69 std::string extension_id(extension->id());
71 GetExtensionProcessManager()->GetBackgroundHostForExtension(extension);
79 GetExtensionProcessManager()->GetBackgroundHostForExtension(extension));
84 const Extension* extension = local
86 ASSERT_TRUE(extension);
88 GetExtensionProcessManager()->GetBackgroundHostForExtension(extension);
101 const Extension* extension = GetExtensionService()->extensions()->back(); local
111 const Extension* extension = local
    [all...]
crx_installer_browsertest.cc 26 void ConfirmInstall(Delegate* delegate, const Extension* extension) {
30 void OnInstallSuccess(const Extension* extension, SkBitmap* icon) {
46 // Installs a crx from |crx_relpath| (a path relative to the extension test
70 // A regular extension should give no prompt.
74 // An extension with NPAPI should give a prompt.
extension_tab_helper.h 14 class Extension;
18 // Per-tab extension helper. Also handles non-extension apps.
38 // Sets the extension denoting this as an app. If |extension| is non-null this
40 // the extension. It's up to consumers of TabContents to do that.
45 void SetExtensionApp(const Extension* extension);
47 // Convenience for setting the app extension by id. This does nothing if
48 // |extension_app_id| is empty, or an extension can't be found given th
    [all...]
extension_uninstall_dialog.cc 10 #include "chrome/common/extensions/extension.h"
17 // Size of extension icon in top left of dialog.
32 const Extension* extension) {
35 extension_ = extension;
38 extension_->GetIconResource(Extension::EXTENSION_ICON_LARGE,
image_loading_tracker.cc 8 #include "chrome/common/extensions/extension.h"
135 void ImageLoadingTracker::LoadImage(const Extension* extension,
147 DCHECK(extension->path() == resource.extension_root());
149 // See if the extension has the image already.
150 if (extension->HasCachedImage(resource, max_size)) {
151 SkBitmap image = extension->GetCachedImage(resource, max_size);
157 load_map_[id] = extension;
187 const Extension* extension local
    [all...]
  /external/chromium/chrome/browser/
background_application_list_model_unittest.cc 19 #include "chrome/common/extensions/extension.h"
77 // Returns a barebones test Extension object with the specified |name|. The
78 // returned extension will include background permission iff
80 static scoped_refptr<Extension> CreateExtension(const std::string& name,
91 scoped_refptr<Extension> extension = Extension::Create( local
92 bogus_file_path().AppendASCII(name), Extension::INVALID, manifest,
93 Extension::STRICT_ERROR_CHECKS, &error);
96 EXPECT_TRUE(extension.get() != NULL) << error
203 scoped_refptr<Extension> extension = local
228 scoped_refptr<Extension> extension = cursor->get(); local
    [all...]
  /external/chromium/chrome/browser/task_manager/
task_manager_browsertest.cc 24 #include "chrome/common/extensions/extension.h"
225 // Loading an extension with a background page should result in a new
231 // Unload extension to avoid crash on Windows (see http://crbug.com/31663).
246 // Browser, Extension background page, and the New Tab Page.
249 // Open a new tab to an extension URL and make sure we notice that.
250 GURL url("chrome-extension://behllobkkfkfnphdnhnkndlbkcpglgmj/page.html");
254 // Check that the third entry (background) is an extension resource whose
255 // title starts with "Extension:".
256 ASSERT_EQ(TaskManager::Resource::EXTENSION, model()->GetResourceType(2));
263 // Check that the fourth entry (page.html) is of type extension and has bot
283 const Extension* extension = local
417 const Extension* extension = model()->GetResourceExtension(2); local
    [all...]
  /device/samsung/manta/recovery/
Android.mk 15 # Edify extension functions for doing bootloader updates on manta devices.
  /device/samsung/toro/recovery/
Android.mk 5 # Edify extension functions for doing modem (radio) updates on Toro devices.
  /device/samsung/toroplus/recovery/
Android.mk 5 # Edify extension functions for doing modem (radio) updates on toroplus devices.
  /external/chromium/android/jni/
mime_utils.cc 33 bool MimeUtils::GuessMimeTypeFromExtension(const std::string& extension,
36 jstring jExtension = env->NewStringUTF(extension.c_str());
  /external/chromium/chrome/browser/notifications/
notification_options_menu_model.cc 22 #include "chrome/common/extensions/extension.h"
121 const Extension* extension = ext_service->GetExtensionByURL(origin); local
122 // We get back no extension here when we show the notification after
123 // the extension has crashed.
124 if (extension) {
169 const Extension* extension = ext_service->GetExtensionByURL(origin); local
170 if (extension) {
172 const std::string& id = extension->id()
227 const Extension* extension = ext_service->GetExtensionByURL(origin); local
    [all...]
  /external/chromium/chrome/browser/sync/glue/
extension_change_processor.cc 19 #include "chrome/common/extensions/extension.h"
44 // some events (e.g., extension installation) are done asynchronously.
70 VLOG(1) << "Removing server data for uninstalled extension " << id
75 const Extension* extension = NULL; local
77 extension = Details<UnloadedExtensionInfo>(details)->extension;
79 extension = Details<const Extension>(details).ptr();
81 CHECK(extension);
    [all...]
extension_util.h 14 class Extension;
26 // Returns whether or not the given extension is one we want to sync.
27 bool IsExtensionValid(const Extension& extension);
43 // Returns true iff two ExtensionSpecifics denote the same extension
57 // inherent to the extension. Currently they include |enabled| and
81 // Fills |specifics| with information taken from |extension|, which
82 // must be a syncable extension. |specifics| will be valid after this
84 void GetExtensionSpecifics(const Extension& extension,
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/extensions/
browser_actions_controller.h 17 class Extension;
47 // A dictionary of Extension ID -> BrowserActionButton pairs representing the
49 // extension.
90 // Returns the NSView for the action button associated with an extension.
91 - (NSView*)browserActionViewForExtension:(const Extension*)extension;
99 // it is passed an extension that is not a Browser Action, then it will return
101 - (NSPoint)popupPointForBrowserAction:(const Extension*)extension;
extension_install_dialog_controller.h 18 class Extension;
21 // A controller for dialog to let the user install an extension. Created by
54 extension:(const Extension*)extension
  /external/chromium/chrome/browser/ui/webui/
extension_icon_source.h 15 #include "chrome/common/extensions/extension.h"
26 // ExtensionIconSource serves extension icons through network level chrome:
27 // requests. Icons can be retrieved for any installed extension or app.
30 // chrome://extension-icon/<extension_id>/<icon_size>/<match_type>?[options]
33 // <extension_id> = the id of the extension
35 // corresponding Extension:Icons enum.
42 // chrome-extension://gbmgkahjioeacddebbnengilkgbkhodg/32/1?grayscale=true
44 // chrome-extension://gbmgkahjioeacddebbnengilkgbkhodg/128/0
48 // 1) The icons as listed in the extension / app manifests.
49 // 2) If a 16px icon was requested, the favicon for extension's launch URL
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/extensions/calendar/javascript/
options.js 44 chrome.extension.getBackgroundPage().onSettingsChange();
48 * Fired when a request is sent from either an extension process or a content
57 chrome.extension.onRequest.addListener(function(request, sender, sendResponse) {
  /external/stlport/stlport/
rope 28 * no extension.
30 # error The rope class is a STLport extension.

Completed in 791 milliseconds

1 2 3 4 5 67 8 91011>>