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

1 2 3 45 6 7 8 91011

  /external/protobuf/src/google/protobuf/compiler/javamicro/
javamicro_field.cc 61 extension_generators_[i].reset(MakeGenerator(descriptor->extension(i), params));
  /external/webkit/WebCore/platform/
MIMETypeRegistry.cpp 30 #if ENABLE(ARCHIVE) // ANDROID extension: disabled to reduce code size
243 #if ENABLE(ARCHIVE) // ANDROID extension: disabled to reduce code size
252 const char* extension; member in struct:WebCore::TypeExtensionPair
256 // specific MIME type lookup doens't have a match for a media file extension. While some
259 // ever add a MIME type -> file extension mapping, the alternate MIME types will need
329 mediaMIMETypeForExtensionMap->set(pairs[ndx].extension, pairs[ndx].type);
370 String extension = path.substring(pos + 1); local
371 String result = getMIMETypeForExtension(extension);
  /external/webkit/WebCore/plugins/mac/
PluginPackageMac.cpp 192 String extension =(CFStringRef)CFArrayGetValueAtIndex(extensions.get(), i); local
193 extension = extension.lower();
194 mimeExtensions.append(extension);
  /external/webkit/WebKit/mac/Plugins/
WebBasePluginPackage.h 90 - (NSString *)MIMETypeForExtension:(NSString *)extension;
WebBasePluginPackage.mm 328 - (NSString *)MIMETypeForExtension:(NSString *)extension
330 return [extensionToMIME objectForKey:extension];
376 NSString *MIME, *extension;
383 while ((extension = [extensionEnumerator nextObject]) != nil) {
384 if (![extension isEqualToString:@""])
385 [extensionToMIME setObject:MIME forKey:extension];
  /packages/apps/Mms/src/com/android/mms/ui/
UriImage.java 89 String extension = MimeTypeMap.getFileExtensionFromUrl(mPath); local
90 if (TextUtils.isEmpty(extension)) {
92 // urlEncoded strings. Let's try one last time at finding the extension.
95 extension = mPath.substring(dotPos + 1);
98 mContentType = mimeTypeMap.getMimeTypeFromExtension(extension);
  /external/webkit/WebCore/bindings/v8/
V8Proxy.cpp 846 void V8Proxy::registerExtensionWithV8(v8::Extension* extension)
848 // If the extension exists in our list, it was already registered with V8.
849 if (!registeredExtensionWithV8(extension))
850 v8::RegisterExtension(extension);
853 bool V8Proxy::registeredExtensionWithV8(v8::Extension* extension)
856 if (m_extensions[i].extension == extension)
863 void V8Proxy::registerExtension(v8::Extension* extension, const String& schemeRestriction
    [all...]
  /external/webkit/WebKit/qt/Api/
qwebpage.h 257 enum Extension {
297 virtual bool extension(Extension extension, const ExtensionOption *option = 0, ExtensionReturn *output = 0);
298 virtual bool supportsExtension(Extension extension) const;
  /external/qemu/distrib/sdl-1.2.12/src/video/wincommon/
SDL_wingl.c 80 static int ExtensionSupported(const char *extension, const char *extensions)
85 /* Extension names should not have spaces. */
86 where = SDL_strchr(extension, ' ');
87 if ( where || *extension == '\0' )
101 where = SDL_strstr(start, extension);
104 terminator = where + SDL_strlen(extension);
  /external/qemu/distrib/sdl-1.2.12/src/video/x11/
SDL_x11gl.c 57 static int glXExtensionSupported(_THIS, const char *extension)
63 /* Extension names should not have spaces. */
64 where = SDL_strchr(extension, ' ');
65 if ( where || *extension == '\0' ) {
77 where = SDL_strstr(start, extension);
80 terminator = where + strlen(extension);
  /external/webkit/WebCore/platform/network/qt/
QNetworkReplyHandler.cpp 286 // let's try to guess from the extension
287 QString extension = m_reply->url().path(); local
288 int index = extension.lastIndexOf(QLatin1Char('.'));
290 extension = extension.mid(index + 1);
291 mimeType = MIMETypeRegistry::getMIMETypeForExtension(extension);
  /external/webkit/WebCore/plugins/
PluginDatabase.cpp 206 String PluginDatabase::MIMETypeForExtension(const String& extension) const
208 if (extension.isEmpty())
228 if (equalIgnoringCase(extensions[i], extension)) {
263 String extension = filename.substring(extensionPos + 1); local
265 mimeType = MIMETypeForExtension(extension);
272 // corresponding to the extension.
  /packages/apps/Email/src/com/android/email/provider/
AttachmentProvider.java 189 * If the filename has a recognizable extension and it converts to a mime type, return that.
190 * If the filename has an unrecognized extension, return "application/extension"
204 // Try to find an extension in the filename
207 String extension = null; local
209 extension = fileName.substring(lastDot + 1).toLowerCase();
211 if (!TextUtils.isEmpty(extension)) {
212 // Extension found. Look up mime type, or synthesize if none found.
213 mimeType = MimeTypeMap.getSingleton().getMimeTypeFromExtension(extension);
215 mimeType = "application/" + extension;
    [all...]
  /external/bluetooth/glib/gio/
gappinfo.c 56 * implements the #GVfs extension point). As such, if the application
328 * @extension: a string containing the file extension (without the dot).
337 const char *extension,
343 g_return_val_if_fail (extension != NULL, FALSE);
348 return (* iface->set_as_default_for_extension) (appinfo, extension, error);
gappinfo.h 117 const char *extension,
161 const char *extension,
glocaldirectorymonitor.c 225 GIOExtension *extension = l->data; local
228 klass = G_LOCAL_DIRECTORY_MONITOR_CLASS (g_io_extension_ref_class (extension));
  /external/webkit/WebCore/platform/chromium/
ClipboardChromium.cpp 309 String extension = MIMETypeRegistry::getPreferredExtensionForMIMEType( local
311 dataObject->fileExtension = extension.isEmpty() ? "" : "." + extension;
  /external/bouncycastle/src/main/java/org/bouncycastle/x509/extension/
X509ExtensionUtil.java 1 package org.bouncycastle.x509.extension;
  /external/qemu/
kvm.h 125 int kvm_check_extension(KVMState *s, unsigned int extension);
  /external/webkit/WebKit/mac/Misc/
WebNSViewExtras.m 187 NSString *extension = @"";
188 dragImage = [[NSWorkspace sharedWorkspace] iconForFileType:extension];
  /external/webkit/WebKitTools/DumpRenderTree/qt/
DumpRenderTreeQt.cpp 276 bool WebPage::supportsExtension(QWebPage::Extension extension) const
278 if (extension == QWebPage::ErrorPageExtension)
284 bool WebPage::extension(Extension extension, const ExtensionOption *option, ExtensionReturn *output) function in class:WebCore::WebPage
  /libcore/luni/src/main/java/java/util/
ResourceBundle.java 189 * the path to a properties file (without a file extension).
527 String extension = strip(locale);
528 if (extension == null) {
531 return handleGetBundle(base, extension, loadBase, loader);
574 String extension = strip(locale);
576 if (extension != null) {
577 ResourceBundle parent = handleGetBundle(base, extension, true,
587 if (extension != null && (loadBase || extension.length() > 0)) {
588 bundle = handleGetBundle(base, extension, loadBase, loader)
    [all...]
  /packages/apps/Email/src/org/apache/commons/io/
FilenameUtils.java 50 * <li>the extension - txt</li>
96 * The extension separator character.
102 * The extension separator String.
568 * Returns the index of the last extension separator character, which is a dot.
823 * Gets the base name, minus the full path and extension, from a full filename.
844 * Gets the extension of a filename.
    [all...]
  /external/chromium/net/url_request/
url_request_file_job.cc 180 if (LowerCaseEqualsASCII(file_path_.Extension(), ".svgz"))
279 std::wstring extension = local
284 if (!LowerCaseEqualsASCII(extension, "lnk"))
  /external/v8/src/
contexts.h 130 // [ extension ] A pointer to an extension JSObject, or NULL. Used to
133 // stored in the extension slot of a 'with' context.
135 // to lazily allocated extension object. Context::Lookup
136 // searches the extension object for properties.
239 JSObject* extension() { return JSObject::cast(unchecked_extension()); } function in class:v8::internal::Context
275 return IsCatchContext() && extension() == object;
304 // the result is the JSObject extension context or the global object,
315 // context. Do not consider context extension objects. This is
319 // it is shadowed by a property in an extension object introduced b
    [all...]

Completed in 629 milliseconds

1 2 3 45 6 7 8 91011