/ndk/sources/cxx-stl/stlport/stlport/ |
slist | 29 * no extension. 31 # error The slist class is an STLport extension.
|
/packages/apps/Mms/src/com/android/mms/model/ |
VideoModel.java | 84 String extension = mSrc.substring(index + 1); local 85 if (!(TextUtils.isEmpty(extension)) && 86 (extension.equalsIgnoreCase("3gp") || 87 extension.equalsIgnoreCase("3gpp") || 88 extension.equalsIgnoreCase("3g2"))) { 93 Log.v(TAG, "Media extension is unknown.");
|
/frameworks/base/core/java/android/webkit/ |
MimeTypeMap.java | 33 * MIME-type to file extension mapping: 38 * File extension to MIME type mapping: 51 * Returns the file extension or an empty string iff there is no 52 * extension. This method is a convenience method for obtaining the 53 * extension of a url and has undefined results for other Strings. 55 * @return The file extension of the given url. 85 private void loadEntry(String mimeType, String extension) { 91 // the first extension is considered the most popular and is 95 mMimeTypeToExtensionMap.put(mimeType, extension); 98 mExtensionToMimeTypeMap.put(extension, mimeType) [all...] |
/external/emma/core/java12/com/vladium/util/ |
Files.java | 160 * @return String file name without the extension [excluding '.' separator] 161 * [if 'file' does not appear to have an extension, the full name is returned]. 181 * @return String extension [including '.' separator] or "" if 'file' does not 182 * appear to have an extension. 294 * This defers to File.createTempFile (prefix, extension, parentDir) after 295 * normalizing 'extension'.<P> 307 * @param extension pattern for the temp file name [null is equivalient to 314 public static File createTempFile (final File parentDir, final String prefix, String extension) 322 if (extension == null) extension = ".tmp" [all...] |
/external/gtest/src/ |
gtest-filepath.cc | 103 // Returns a copy of the FilePath with the case-insensitive extension removed. 105 // FilePath("dir/file"). If a case-insensitive extension is not 107 FilePath FilePath::RemoveExtension(const char* extension) const { 108 String dot_extension(String::Format(".%s", extension)); 141 // extension = "xml", returns "dir/test.xml". If number is greater 147 const char* extension) { 150 String::Format("%s.%s", base_name.c_str(), extension) : 151 String::Format("%s_%d.%s", base_name.c_str(), number, extension)); 243 // will be directory/base_name.extension or 244 // directory/base_name_<number>.extension if directory/base_name.extensio [all...] |
/external/protobuf/gtest/src/ |
gtest-filepath.cc | 99 // Returns a copy of the FilePath with the case-insensitive extension removed. 101 // FilePath("dir/file"). If a case-insensitive extension is not 103 FilePath FilePath::RemoveExtension(const char* extension) const { 104 String dot_extension(String::Format(".%s", extension)); 142 // extension = "xml", returns "dir/test.xml". If number is greater 148 const char* extension) { 151 file = String::Format("%s.%s", base_name.c_str(), extension); 153 file = String::Format("%s_%d.%s", base_name.c_str(), number, extension); 241 // will be directory/base_name.extension or 242 // directory/base_name_<number>.extension if directory/base_name.extensio [all...] |
/external/v8/test/cctest/ |
cctest.cc | 49 // Drop the extension, if there is one. 50 char *extension = strrchr(basename, '.'); local 51 if (extension) *extension = 0;
|
/external/v8/test/mjsunit/regress/ |
regress-186.js | 42 // Add property called __proto__ to the extension object. 44 // Check that the extension object's prototype did not change. 46 assertFalse(setterCalled, "prototype of extension object changed"); 51 // Add const property called __proto__ to the extension object. 53 // Check that the extension object's prototype did not change. 55 assertFalse(setterCalled, "prototype of extension object changed");
|
/external/webkit/WebKitTools/DumpRenderTree/qt/ |
DumpRenderTreeQt.h | 171 virtual bool supportsExtension(QWebPage::Extension extension) const; 172 virtual bool extension(Extension extension, const ExtensionOption *option, ExtensionReturn *output);
|
/external/chromium/net/base/ |
mime_util.h | 15 // Get the mime type (if any) that is associated with the given file extension. 24 // Get the preferred extension (if any) associated with the given mime type. 25 // Returns true if a corresponding file extension exists. The extension is 28 FilePath::StringType* extension);
|
filter.cc | 98 FilePath::StringType extension = filename.Extension(); local 103 // For the case of svgz files, we use the extension to distinguish 108 if (FILE_PATH_LITERAL(".gz" == extension) || 109 FILE_PATH_LITERAL(".tgz" == extension) || 110 FILE_PATH_LITERAL(".svgz") == extension) 117 if ((FILE_PATH_LITERAL(".gz" == extension) || 118 FILE_PATH_LITERAL(".tgz") == extension) &&
|
/external/webkit/WebKit/mac/Plugins/ |
WebPluginDatabase.h | 49 - (WebBasePluginPackage *)pluginForExtension:(NSString *)extension;
|
/external/webkit/WebKitTools/Scripts/ |
check-dom-results | 118 my $extension = $1; 120 $failure =~ s|-expected\.txt|.${extension}|;
|
/external/webkit/WebCore/platform/win/ |
MIMETypeRegistryWin.cpp | 35 static String mimeTypeForExtension(const String& extension) 37 String ext = "." + extension; 57 HRESULT result = SHGetValueW(HKEY_CLASSES_ROOT, path.charactersWithNullTermination(), L"Extension", &keyType, (LPVOID)extStr, &extStrLen);
|
/external/webkit/WebKit/win/ |
WebURLResponse.cpp | 442 TCHAR extension[MAX_PATH]; local 443 DWORD keySize = sizeof(extension)/sizeof(extension[0]); 444 err = RegQueryValueEx(subKey, TEXT("Extension"), 0, &keyType, (LPBYTE)extension, &keySize); 450 _tcscpy(extension, TEXT(".html")); 453 _tcscpy(extension, TEXT(".xhtml")); 456 _tcscpy(extension, TEXT(".svg")); 461 *result = SysAllocString(extension);
|
/frameworks/base/services/surfaceflinger/ |
GLExtensions.cpp | 101 bool GLExtensions::hasExtension(char const* extension) const 103 const String8 s(extension);
|
/external/webkit/WebCore/platform/network/mac/ |
WebCoreURLResponse.mm | 42 // When the URL's extension is a known binary type, we'll go with application/octet-stream. 382 if (NSString *extension = [[url path] pathExtension]) { 386 result = [extensionMap objectForKey:[extension lowercaseString]]; 390 // looking up the file extension in the UTI maps. 391 RetainPtr<CFStringRef> uti(AdoptCF, UTTypeCreatePreferredIdentifierForTag(kUTTagClassFilenameExtension, (CFStringRef)extension, 0));
|
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/ |
BluetoothOppReceiveFileInfo.java | 142 String extension = null; local 148 extension = filename.substring(dotIndex); 153 String fullfilename = chooseUniquefilename(filename, extension); 207 private static String chooseUniquefilename(String filename, String extension) { 208 String fullfilename = filename + extension; 228 fullfilename = filename + sequence + extension;
|
/external/protobuf/java/src/test/java/com/google/protobuf/ |
DescriptorsTest.java | 130 FieldDescriptor extension = local 132 assertEquals(extension, file.getExtensions().get(0)); 133 assertEquals(extension, 199 FieldDescriptor extension = local 233 assertEquals("optional_int32_extension", extension.getName()); 235 extension.getFullName()); 236 assertEquals(1, extension.getNumber()); 238 extension.getContainingType()); 239 assertEquals(UnittestProto.getDescriptor(), extension.getFile()); 240 assertEquals(FieldDescriptor.Type.INT32, extension.getType()) [all...] |
/external/bluetooth/glib/gio/ |
gunionvolumemonitor.c | 420 GIOExtension *extension; local 435 extension = g_io_extension_point_get_extension_by_name (ep, use_this); 436 if (extension) 438 klass = G_NATIVE_VOLUME_MONITOR_CLASS (g_io_extension_ref_class (extension)); 450 extension = l->data; 451 klass = G_NATIVE_VOLUME_MONITOR_CLASS (g_io_extension_ref_class (extension)); 503 GIOExtension *extension; local 519 extension = l->data; 521 klass = G_VOLUME_MONITOR_CLASS (g_io_extension_ref_class (extension)); 524 monitor = g_object_new (g_io_extension_get_type (extension), NULL) [all...] |
/external/openssl/crypto/dso/ |
dso_dl.c | 320 static const char extension[] = ".sl"; variable 322 static const char extension[] = ".so"; variable 334 rsize += strlen(extension);/* The length of ".s?" */ 348 sprintf(translated, "lib%s%s", filename, extension); 350 sprintf(translated, "%s%s", filename, extension);
|
/external/protobuf/python/google/protobuf/internal/ |
reflection_test.py | 735 extension = unittest_pb2.optional_int32_extension 736 self.assertTrue(not extendee_proto.HasExtension(extension)) 737 self.assertEqual(0, extendee_proto.Extensions[extension]) 740 self.assertTrue(not extendee_proto.HasExtension(extension)) 742 extendee_proto.Extensions[extension] = 23 743 self.assertEqual(23, extendee_proto.Extensions[extension]) 744 self.assertTrue(extendee_proto.HasExtension(extension)) 746 extendee_proto.ClearExtension(extension) 747 self.assertEqual(0, extendee_proto.Extensions[extension]) 748 self.assertTrue(not extendee_proto.HasExtension(extension)) [all...] |
/external/bison/src/ |
muscle_tab.c | 167 char *extension = NULL; local 174 extension = obstack_finish (&muscle_obstack); 175 muscle_grow (key, extension, "");
|
/external/webkit/WebCore/loader/icon/ |
IconFetcher.cpp | 91 String extension = path.substring(pos + 1); local 92 if (equalIgnoringCase(extension, "icns")) 94 else if (equalIgnoringCase(extension, "ico"))
|
/bootable/recovery/updater/ |
Android.mk | 42 # extension libs. 47 # extension libs to a temp file, then copy that to the ".list" file if 50 # (and updater.o recompiled) when the list of extension libs changes.
|