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

1 2 3 45 6 7 8 91011>>

  /external/emma/core/java12/com/vladium/emma/report/
SourcePathCache.java 162 return super.toString () + ", extension = [" + m_extension + "]";
165 FileExtensionFilter (final String extension)
167 if (extension == null)
168 throw new IllegalArgumentException ("null input: extension");
171 final String canonical = canonicalizeExtension (extension);
173 if (extension.length () <= 1)
174 throw new IllegalArgumentException ("empty input: extension");
179 private static String canonicalizeExtension (final String extension)
181 if (extension.charAt (0) != '.')
182 return ".".concat (extension);
    [all...]
  /external/protobuf/src/google/protobuf/
extension_set_heavy.cc 71 for (map<int, Extension>::const_iterator iter = extensions_.begin();
106 #define GOOGLE_DCHECK_TYPE(EXTENSION, LABEL, CPPTYPE) \
107 GOOGLE_DCHECK_EQ((EXTENSION).is_repeated ? FieldDescriptor::LABEL_REPEATED \
110 GOOGLE_DCHECK_EQ(cpp_type((EXTENSION).type), FieldDescriptor::CPPTYPE_##CPPTYPE)
115 map<int, Extension>::const_iterator iter = extensions_.find(number);
127 Extension* extension; local
128 if (MaybeNewExtension(descriptor->number(), descriptor, &extension)) {
129 extension->type = descriptor->type();
130 GOOGLE_DCHECK_EQ(cpp_type(extension->type), FieldDescriptor::CPPTYPE_MESSAGE)
146 Extension* extension; local
181 const FieldDescriptor* extension = local
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
WebPluginListBuilderImpl.cpp 59 void WebPluginListBuilderImpl::addFileExtensionToLastMediaType(const WebString& extension)
62 info.extensions.append(extension);
WebPluginListBuilderImpl.h 48 virtual void addFileExtensionToLastMediaType(const WebString& extension);
  /external/chromium/chrome/browser/ui/
browser_dialogs.h 13 class Extension;
40 // the extension has loaded. |extension| is the installed extension. |browser|
42 // icon of the extension.
43 void ShowExtensionInstalledBubble(const Extension* extension,
  /external/chromium/chrome/browser/ui/views/extensions/
extension_installed_bubble.cc 19 #include "chrome/common/extensions/extension.h"
68 const Extension* extension,
72 ExtensionInstalledBubble::Show(extension, browser, icon);
79 // text about the installed extension.
83 InstalledBubbleContent(const Extension* extension,
101 string16 extension_name = UTF8ToUTF16(extension->name());
123 UTF8ToUTF16(extension->omnibox_keyword()))));
236 void ExtensionInstalledBubble::Show(const Extension* extension
279 const Extension* extension = Details<const Extension>(details).ptr(); local
287 const Extension* extension = local
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/xbios/
SDL_xbios_blowup.h 25 Blowup extension definitions
57 unsigned short extension; /* Extended mode defined ? 0=yes, 1=no */ member in struct:__anon13528
  /external/webkit/Source/WebCore/bindings/v8/
DateExtension.h 39 class DateExtension : public v8::Extension {
50 static DateExtension* extension; member in class:WebCore::DateExtension
  /external/webrtc/test/testsupport/
fileutils.h 110 // 1. [name]_[platform]_[architecture].[extension]
111 // 2. [name]_[platform].[extension]
112 // 3. [name]_[architecture].[extension]
113 // 4. [name].[extension]
123 // extension - File extension, without the dot, i.e. "bmp" or "yuv".
124 std::string ResourcePath(std::string name, std::string extension);
  /external/chromium/chrome/browser/sync/glue/
extension_util_unittest.cc 11 #include "chrome/common/extensions/extension.h"
45 scoped_refptr<Extension> MakeExtension(
49 Extension::Location location, int num_plugins,
79 scoped_refptr<Extension> extension = Extension::Create( local
80 extension_path, location, source, Extension::STRICT_ERROR_CHECKS, &error);
81 EXPECT_TRUE(extension);
83 return extension;
89 scoped_refptr<Extension> extension
392 scoped_refptr<Extension> extension = Extension::Create( local
    [all...]
extension_util.cc 17 #include "chrome/common/extensions/extension.h"
22 bool IsExtensionValid(const Extension& extension) {
24 if (extension.location() != Extension::INTERNAL) {
33 if (!extension.update_url().is_empty() &&
34 (extension.update_url() != Extension::GalleryUpdateUrl(false)) &&
35 (extension.update_url() != Extension::GalleryUpdateUrl(true)))
    [all...]
  /external/chromium/chrome/browser/autofill/
phone_number.h 62 const string16& extension() const { return extension_; } function in class:PhoneNumber
73 void set_extension(const string16& extension) { extension_ = extension; }
  /external/chromium/chrome/browser/
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/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/chromium/chrome/browser/extensions/
extension_install_ui.cc 25 #include "chrome/common/extensions/extension.h"
65 // Size of extension icon in top left of dialog.
102 const Extension* previous_theme =
121 const Extension* extension) {
123 extension_ = extension;
129 if (extension->is_theme()) {
138 const Extension* extension) {
140 extension_ = extension;
    [all...]
extension_install_ui.h 18 class Extension;
24 // Displays all the UI around extension installation and uninstallation.
59 virtual void ConfirmInstall(Delegate* delegate, const Extension* extension);
65 virtual void ConfirmReEnable(Delegate* delegate, const Extension* extension);
68 virtual void OnInstallSuccess(const Extension* extension, SkBitmap* icon);
85 const Extension* new_theme, Profile* profile);
101 const Extension* new_theme
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/extensions/
browser_action_button.h 15 class Extension;
32 // extension's icon.
44 // The extension for this button. Weak.
45 const Extension* extension_;
60 extension:(const Extension*)extension
79 @property(readonly, nonatomic) const Extension* extension; variable
extension_installed_bubble_controller.h 17 class Extension;
24 // Maximum height or width of extension's icon (corresponds to Windows & GTK).
33 // We use a different kind of notification for each of these extension types.
43 // Controller for the extension installed bubble. This bubble pops up after
44 // an extension has been installed to inform the user that the install happened
45 // properly, and to let the user know how to manage this extension in the
51 const Extension* extension_; // weak
77 @property(nonatomic, readonly) const Extension* extension; variable
80 // Initialize the window, and then create observers to wait for the extension
    [all...]
  /external/chromium/testing/gtest/include/gtest/internal/
gtest-filepath.h 88 // extension = "xml", returns "dir/test.xml". If number is greater
94 const char* extension);
103 // will be directory/base_name.extension or
104 // directory/base_name_<number>.extension if directory/base_name.extension
112 const char* extension);
138 // Returns a copy of the FilePath with the case-insensitive extension removed.
140 // FilePath("dir/file"). If a case-insensitive extension is not
142 FilePath RemoveExtension(const char* extension) const;
  /external/gtest/include/gtest/internal/
gtest-filepath.h 88 // extension = "xml", returns "dir/test.xml". If number is greater
94 const char* extension);
103 // will be directory/base_name.extension or
104 // directory/base_name_<number>.extension if directory/base_name.extension
112 const char* extension);
138 // Returns a copy of the FilePath with the case-insensitive extension removed.
140 // FilePath("dir/file"). If a case-insensitive extension is not
142 FilePath RemoveExtension(const char* extension) const;
  /external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/
gtest-filepath.h 88 // extension = "xml", returns "dir/test.xml". If number is greater
94 const char* extension);
103 // will be directory/base_name.extension or
104 // directory/base_name_<number>.extension if directory/base_name.extension
112 const char* extension);
138 // Returns a copy of the FilePath with the case-insensitive extension removed.
140 // FilePath("dir/file"). If a case-insensitive extension is not
142 FilePath RemoveExtension(const char* extension) const;
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-filepath.h 88 // extension = "xml", returns "dir/test.xml". If number is greater
94 const char* extension);
103 // will be directory/base_name.extension or
104 // directory/base_name_<number>.extension if directory/base_name.extension
112 const char* extension);
138 // Returns a copy of the FilePath with the case-insensitive extension removed.
140 // FilePath("dir/file"). If a case-insensitive extension is not
142 FilePath RemoveExtension(const char* extension) const;
  /external/open-vcdiff/gtest/include/gtest/internal/
gtest-filepath.h 88 // extension = "xml", returns "dir/test.xml". If number is greater
94 const char* extension);
103 // will be directory/base_name.extension or
104 // directory/base_name_<number>.extension if directory/base_name.extension
112 const char* extension);
138 // Returns a copy of the FilePath with the case-insensitive extension removed.
140 // FilePath("dir/file"). If a case-insensitive extension is not
142 FilePath RemoveExtension(const char* extension) const;
  /external/protobuf/gtest/include/gtest/internal/
gtest-filepath.h 88 // extension = "xml", returns "dir/test.xml". If number is greater
94 const char* extension);
103 // will be directory/base_name.extension or
104 // directory/base_name_<number>.extension if directory/base_name.extension
112 const char* extension);
138 // Returns a copy of the FilePath with the case-insensitive extension removed.
140 // FilePath("dir/file"). If a case-insensitive extension is not
142 FilePath RemoveExtension(const char* extension) const;
  /external/webkit/Source/WebKit2/UIProcess/Plugins/
PluginInfoStore.cpp 150 PluginInfoStore::Plugin PluginInfoStore::findPluginForExtension(const String& extension, String& mimeType)
152 ASSERT(!extension.isNull());
162 if (find(extensions.begin(), extensions.end(), extension) != extensions.end()) {
163 // We found a supported extension, set the correct MIME type.
175 String extension; local
180 extension = filename.substring(extensionPos + 1);
183 return extension;
187 String PluginInfoStore::getMIMETypeForExtension(const String& extension)
189 return MIMETypeRegistry::getMIMETypeForExtension(extension);
204 // Next, check if any plug-ins claim to support the URL extension
205 String extension = pathExtension(url).lower(); local
    [all...]

Completed in 696 milliseconds

1 2 3 45 6 7 8 91011>>