/external/webkit/WebKit/chromium/src/ |
WebScriptController.cpp | 44 void WebScriptController::registerExtension(v8::Extension* extension) 46 V8Proxy::registerExtension(extension, WebString()); 49 void WebScriptController::registerExtension(v8::Extension* extension, 52 V8Proxy::registerExtension(extension, schemeRestriction); 55 void WebScriptController::registerExtension(v8::Extension* extension, 58 V8Proxy::registerExtension(extension, extensionGroup);
|
/external/webkit/WebCore/plugins/chromium/ |
PluginDataChromium.h | 33 // Checks if any of the plugins handle this extension, and if so returns the 34 // plugin's mime type for this extension. Otherwise returns an empty string. 35 String getPluginMimeTypeFromExtension(const String& extension);
|
/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/WebCore/platform/brew/ |
MIMETypeRegistryBrew.cpp | 37 const char* extension; member in struct:WebCore::ExtensionMap 69 while (e->extension) { 70 if (str == e->extension)
|
/external/webkit/WebCore/platform/gtk/ |
MIMETypeRegistryGtk.cpp | 34 const char* extension; member in struct:WebCore::ExtensionMap 67 while (e->extension) { 68 if (s == e->extension)
|
/external/webkit/WebCore/platform/haiku/ |
MIMETypeRegistryHaiku.cpp | 36 const char* extension; member in struct:WebCore::ExtensionMap 66 while (extMap->extension) { 67 if (str == extMap->extension)
|
/external/webkit/WebCore/platform/qt/ |
MIMETypeRegistryQt.cpp | 35 const char* extension; member in struct:WebCore::ExtensionMap 76 while (e->extension) { 77 if (s == e->extension)
|
/external/webkit/WebCore/platform/wx/ |
MimeTypeRegistryWx.cpp | 34 const char* extension; member in struct:WebCore::ExtensionMap 64 while (e->extension) { 65 if (s == e->extension)
|
/external/webkit/WebKit/qt/Api/ |
qwebpluginfactory.cpp | 110 For example, a mime type for PDF documents would return "pdf" as its file extension. 185 \enum QWebPluginFactory::Extension 188 should verify that the extension is supported by calling supportsExtension(). 196 \brief The ExtensionOption class provides an extended input argument to QWebPluginFactory's extension support. 200 \sa QWebPluginFactory::extension() 206 \brief The ExtensionOption class provides an extended output argument to QWebPluginFactory's extension support. 210 \sa QWebPluginFactory::extension() 215 argument is provided as input to the extension; the output results can be stored in \a output. 217 The behaviour of this function is determined by \a extension. 219 You can call supportsExtension() to check if an extension is supported by the factory 225 bool QWebPluginFactory::extension(Extension extension, const ExtensionOption *option, ExtensionReturn *output) function in class:QWebPluginFactory [all...] |
qwebpluginfactory.h | 62 enum Extension { 68 virtual bool extension(Extension extension, const ExtensionOption* option = 0, ExtensionReturn* output = 0); 69 virtual bool supportsExtension(Extension extension) const;
|
/external/protobuf/java/src/main/java/com/google/protobuf/ |
GeneratedMessageLite.java | 100 final GeneratedExtension<MessageType, ?> extension) { 101 if (extension.getContainingTypeDefaultInstance() != 105 "This extension is for a different message type. Please make " + 110 /** Check if a singular extension is present. */ 112 final GeneratedExtension<MessageType, ?> extension) { 113 verifyExtensionContainingType(extension); 114 return extensions.hasField(extension.descriptor); 117 /** Get the number of elements in a repeated extension. */ 119 final GeneratedExtension<MessageType, List<Type>> extension) { 120 verifyExtensionContainingType(extension); 176 ExtensionDescriptor extension = next.getKey(); local 311 final GeneratedExtension<MessageType, ?> extension = local [all...] |
ExtensionRegistry.java | 78 * privileged class by registering itself as an extension of the right type. 81 * extension until it is first requested, at which point the caller must 83 * it would require a mutex lock any time an extension was accessed, which 112 /** The extension's descriptor. */ 116 * A default instance of the extension's type, if it has a message type. 133 * Find an extension by fully-qualified field name, in the proto namespace. 137 * @return Information about the extension if found, or {@code null} 145 * Find an extension by containing type and field number. 147 * @return Information about the extension if found, or {@code null} 156 /** Add an extension from a generated file to the registry. * 225 extensionsByName.put(extension.descriptor.getFullName(), extension); local 239 extensionsByName.put(field.getMessageType().getFullName(), extension); local [all...] |
ExtensionRegistryLite.java | 51 * lite, whether the embedded type (in the case of a message-typed extension) 52 * is lite, and whether the extension itself is lite. Since all three are 56 * Extended type Inner type Extension Use registry 90 * Find an extension by containing type and field number. 92 * @return Information about the extension if found, or {@code null} 106 /** Add an extension from a lite generated file to the registry. */ 108 final GeneratedMessageLite.GeneratedExtension<?, ?> extension) { 110 new ObjectIntPair(extension.getContainingTypeDefaultInstance(), 111 extension.getNumber()), 112 extension); [all...] |
/external/webkit/WebKitTools/QtLauncher/ |
webpage.h | 47 virtual bool supportsExtension(QWebPage::Extension extension) const; 48 virtual bool extension(Extension extension, const ExtensionOption* option, ExtensionReturn* output);
|
/external/chromium/net/base/ |
platform_mime_util.h | 19 FilePath::StringType* extension) const; 22 // Get the mime type (if any) that is associated with the file extension.
|
/external/srec/srec/include/ |
duk_io.h | 39 #define OS_EXT_DELIM '.' /* OS Filename Extension Delimeter */ 40 #define TCP_EXT "tcp" /* Transcription Extension */ 41 #define MDL_EXT "mdl" /* Model Extension */ 59 int check_file_extension(char *filename, char *extension); 60 void get_file_extension(char *filename, char *extension);
|
/external/protobuf/src/google/protobuf/ |
extension_set.cc | 85 GOOGLE_LOG(FATAL) << "Multiple extension registrations for type \"" 102 const ExtensionInfo* extension = local 104 if (extension == NULL) { 107 *output = *extension; 165 for (map<int, Extension>::iterator iter = extensions_.begin(); 177 map<int, Extension>::const_iterator iter = extensions_.find(number); 184 map<int, Extension>::const_iterator iter = extensions_.find(number); 190 map<int, Extension>::iterator iter = extensions_.find(number); 207 #define GOOGLE_DCHECK_TYPE(EXTENSION, LABEL, CPPTYPE) \ 208 GOOGLE_DCHECK_EQ((EXTENSION).is_repeated ? REPEATED : OPTIONAL, LABEL); 300 Extension* extension; local 329 Extension* extension; local 360 Extension* extension; local 389 Extension* extension; local 425 Extension* extension; local 461 Extension* extension; local 494 Extension* extension = &iter->second; local 535 Extension* extension = &iter->second; local 587 Extension* extension; local 687 const Extension& extension = iter->second; local 712 ExtensionInfo extension; local [all...] |
/frameworks/base/media/libstagefright/ |
StagefrightMediaScanner.cpp | 37 static bool FileHasAcceptableExtension(const char *extension) { 48 if (!strcasecmp(extension, kValidExtensions[i])) { 110 const char *extension = strrchr(path, '.'); local 112 if (!extension) { 116 if (!FileHasAcceptableExtension(extension)) { 122 if (!strcasecmp(extension, ".mid") 123 || !strcasecmp(extension, ".smf") 124 || !strcasecmp(extension, ".imy") 125 || !strcasecmp(extension, ".midi") 126 || !strcasecmp(extension, ".xmf" [all...] |
/external/chromium/sdch/open-vcdiff/src/gtest/internal/ |
gtest-filepath.h | 74 // extension = "xml", returns "dir/test.xml". If number is greater 80 const char* extension); 83 // will be directory/base_name.extension or 84 // directory/base_name_<number>.extension if directory/base_name.extension 92 const char* extension); 115 // Returns a copy of the FilePath with the case-insensitive extension removed. 117 // FilePath("dir/file"). If a case-insensitive extension is not 119 FilePath RemoveExtension(const char* extension) const;
|
/external/webkit/WebCore/svg/ |
SVGTests.idl | 34 boolean hasExtension(in core::DOMString extension);
|
/external/bluetooth/glib/gio/ |
giomodule.h | 67 GType g_io_extension_get_type (GIOExtension *extension); 68 const char * g_io_extension_get_name (GIOExtension *extension); 69 gint g_io_extension_get_priority (GIOExtension *extension); 70 GTypeClass* g_io_extension_ref_class (GIOExtension *extension);
|
giomodule.c | 51 * @short_description: Extension Points 59 * An extension point is identified by a name, and it may optionally 62 * extension point, and g_io_extension_point_set_required_type() to 65 * A module can implement an extension point by specifying the #GType 67 * of an extension point has a name, and a priority. Use 68 * g_io_extension_point_implement() to implement an extension point. 73 * /* Register an extension point */ 74 * ep = g_io_extension_point_register ("my-extension-point"); 79 * /* Implement an extension point */ 81 * g_io_extension_point_implement ("my-extension-point" 591 GIOExtension *extension; local [all...] |
/external/webkit/WebCore/platform/graphics/cg/ |
ImageSourceCGMac.mm | 44 RetainPtr<CFStringRef> extension(AdoptCF, UTTypeCopyPreferredTagWithClass(type.get(), kUTTagClassFilenameExtension)); 45 return extension.get();
|
/frameworks/base/core/java/android/webkit/ |
URLUtil.java | 290 * the URL and contentDisposition. File extension, if not defined, 303 String extension = null; local 339 // Split filename between base and extension 340 // Add an extension if filename does not have one 344 extension = MimeTypeMap.getSingleton().getExtensionFromMimeType(mimeType); 345 if (extension != null) { 346 extension = "." + extension; 349 if (extension == null) { 352 extension = ".html" [all...] |
/external/chromium/sdch/open-vcdiff/src/gtest/ |
gtest-filepath.cc | 57 // Returns a copy of the FilePath with the case-insensitive extension removed. 59 // FilePath("dir/file"). If a case-insensitive extension is not 61 FilePath FilePath::RemoveExtension(const char* extension) const { 62 String dot_extension(String::Format(".%s", extension)); 95 // extension = "xml", returns "dir/test.xml". If number is greater 101 const char* extension) { 105 base_name.c_str(), extension)); 108 base_name.c_str(), number, extension)); 143 // will be directory/base_name.extension or 144 // directory/base_name_<number>.extension if directory/base_name.extensio [all...] |