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

1 2 34 5 6 7 8 91011

  /device/htc/common/updater/
Android.mk 19 # librecovery_update_htc is a set of edify extension functions for
  /external/chromium/base/
file_path.h 150 // The character used to identify a file extension.
214 // the file has no extension. If non-empty, Extension() will always start
217 // new_path = path.RemoveExtension().value().append(path.Extension());
220 // returned the extension without a leading "." ("jpg" instead of ".jpg")
221 StringType Extension() const;
229 // extension. Returns "" if BaseName() == "." or "..".
238 // Replaces the extension of |file_name| with |extension|. If |file_name|
239 // does not have an extension, them |extension| is added. If |extension| i
    [all...]
file_util.cc 79 void ReplaceExtension(FilePath* path, const FilePath::StringType& extension) {
81 // If the new extension is "" or ".", then we will just remove the current
82 // extension.
83 if (!extension.empty() &&
84 extension != FilePath::StringType(&kExtensionSeparator, 1)) {
85 if (extension[0] != kExtensionSeparator)
87 clean_extension.append(extension);
97 // Erase the current extension, if any.
359 FilePath::StringType extension = local
362 return extension;
    [all...]
  /external/chromium/net/base/
mime_util_unittest.cc 16 const FilePath::CharType* extension; member in struct:__anon2375
24 { FILE_PATH_LITERAL("not an extension / for sure"), "", false },
31 rv = net::GetMimeTypeFromExtension(tests[i].extension, &mime_type);
x509_certificate_win.cc 138 // Decodes the cert's subjectAltName extension into a CERT_ALT_NAME_INFO
142 PCERT_EXTENSION extension = CertFindExtension(szOID_SUBJECT_ALT_NAME2, local
145 if (!extension)
157 extension->Value.pbData,
158 extension->Value.cbData,
332 // Decodes the cert's certificatePolicies extension into a CERT_POLICIES_INFO
336 PCERT_EXTENSION extension = CertFindExtension(szOID_CERT_POLICIES, local
339 if (!extension)
351 extension->Value.pbData,
352 extension->Value.cbData
    [all...]
  /external/protobuf/src/google/protobuf/
descriptor_unittest.cc 232 foo_extension_ = foo_file_->extension(0);
243 bar_extension_ = bar_file_->extension(0);
726 EXPECT_EQ("bar_foo", message_->extension(0)->lowercase_name());
727 EXPECT_EQ("barbar" , message_->extension(1)->lowercase_name());
728 EXPECT_EQ("barbaz" , message_->extension(2)->lowercase_name());
729 EXPECT_EQ("barfoo" , message_->extension(3)->lowercase_name());
730 EXPECT_EQ("barbar" , message_->extension(4)->lowercase_name());
732 EXPECT_EQ("baz_foo", file_->extension(0)->lowercase_name());
733 EXPECT_EQ("bazbar" , file_->extension(1)->lowercase_name());
734 EXPECT_EQ("bazbaz" , file_->extension(2)->lowercase_name())
3778 const FieldDescriptor* extension = pool.FindExtensionByNumber(foo, 5); local
    [all...]
descriptor_database.cc 75 if (!AddSymbol(path + file.extension(i).name(), value)) return false;
76 if (!AddExtension(file.extension(i), value)) return false;
144 if (!AddExtension(message_type.extension(i), value)) return false;
154 // The extension is fully-qualified. We can use it as a lookup key in
160 GOOGLE_LOG(ERROR) << "Extension conflicts with extension already in database: "
423 const FieldDescriptor* extension = local
425 if (extension == NULL) return false;
428 extension->file()->CopyTo(output);
  /external/v8/src/
parser.h 135 v8::Extension* extension,
142 v8::Extension* extension);
compiler.cc 125 v8::Extension* extension,
163 MakeAST(is_global, script, extension, pre_data, is_json);
240 v8::Extension* extension,
253 if (extension == NULL) {
266 pre_data = PreParse(source, buf.value(), extension);
289 extension,
291 if (extension == NULL && !result.is_null()) {
  /external/webkit/WebCore/platform/wince/
MIMETypeRegistryWince.cpp 36 static String mimeTypeForExtension(const String& extension)
38 String ext = "." + extension;
  /external/webkit/WebCore/plugins/chromium/
PluginDataChromium.cpp 101 String getPluginMimeTypeFromExtension(const String& extension)
110 if (extension == extensions[k])
  /external/webkit/WebCore/plugins/
PluginDatabase.h 92 String MIMETypeForExtension(const String& extension) const;
  /frameworks/base/media/libstagefright/codecs/mp3dec/src/
pvmp3_dec_defs.h 127 int32 extension; member in struct:__anon9256
pvmp3_decode_header.cpp 60 ISO 13818-3 MPEG-2 Audio Decoder - Lower Sampling Frequency Extension
179 info->extension = (temp << 23) >> 31; /* 1 */
  /frameworks/base/services/surfaceflinger/
GLExtensions.h 92 bool hasExtension(char const* extension) const;
  /external/protobuf/java/src/main/java/com/google/protobuf/
AbstractMessage.java 306 final ExtensionRegistry.ExtensionInfo extension = local
309 if (extension == null) {
312 field = extension.descriptor;
313 defaultInstance = extension.defaultInstance;
317 "Message-typed extension lacked default instance: " +
427 /** Called by {@code #mergeFieldFrom()} to parse a MessageSet extension. */
442 // "typeId" is the extension's field number. The extension can only be
466 final ExtensionRegistry.ExtensionInfo extension; local
474 extension = ((ExtensionRegistry) extensionRegistry
    [all...]
  /external/webkit/WebCore/platform/win/
ClipboardWin.cpp 118 static String filesystemPathFromUrlOrTitle(const String& url, const String& title, TCHAR* extension, bool isLink)
124 int extensionLen = extension ? lstrlen(extension) : 0;
153 if (!extension)
157 PathRenameExtension(fsPathBuffer, extension);
162 result += String(static_cast<UChar*>(extension));
236 WCHAR extension[MAX_PATH]; local
243 if (wcscpy_s(extension, MAX_PATH, foundExtension))
246 *extension = 0;
249 if (swprintf_s(filePath, MAX_PATH, TEXT("%s-%d%s"), tempPath, i, extension) == -1
332 String extension = image->image()->filenameExtension(); local
    [all...]
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/build/
ApkBuilder.java 729 * @param fileName the name of the file (including extension)
744 * @param fileName the name of the file (including extension)
745 * @param extension the extension of the file (excluding '.')
748 public static boolean checkFileForPackaging(String fileName, String extension) {
754 return "aidl".equalsIgnoreCase(extension) == false && // Aidl files
755 "java".equalsIgnoreCase(extension) == false && // Java files
756 "class".equalsIgnoreCase(extension) == false && // Java class files
757 "scc".equalsIgnoreCase(extension) == false && // VisualSourceSafe
758 "swp".equalsIgnoreCase(extension) == false && // vi swap fil
    [all...]
  /external/bluetooth/glib/gio/
glocalfilemonitor.c 149 GIOExtension *extension = l->data; local
152 klass = G_LOCAL_FILE_MONITOR_CLASS (g_io_extension_ref_class (extension));
  /external/webkit/WebKit/mac/Misc/
WebNSPasteboardExtras.mm 268 NSString *extension = @"";
272 extension = image->image()->filenameExtension();
273 if (![extension length])
285 NSArray *extensions = [[NSArray alloc] initWithObjects:extension, nil];
  /external/webkit/WebKitTools/CodeCoverage/
cov.py 134 (garbage,extension) = os.path.splitext(f)
135 if extension in [".cc", ".c", ".moc", ".cpp", ".cxx", ".m", ".mm"]:
  /external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/test_types/
image_diff.py 52 def _copy_output_png(self, test_filename, source_image, extension):
59 extension: extension to indicate -actual.png or -expected.png
62 dest_image = self.output_filename(test_filename, extension)
  /frameworks/base/media/java/android/media/
MediaFile.java 103 static void addFileType(String extension, int fileType, String mimeType) {
104 sFileTypeMap.put(extension, new MediaFileType(fileType, mimeType));
  /external/protobuf/src/google/protobuf/compiler/java/
java_field.cc 71 extension_generators_[i].reset(MakeGenerator(descriptor->extension(i)));
java_file.cc 163 ExtensionGenerator(file_->extension(i)).GenerateRegistrationCode(printer);
194 ExtensionGenerator(file_->extension(i)).Generate(printer);
220 ExtensionGenerator(file_->extension(i))
316 ExtensionGenerator(file_->extension(i))

Completed in 402 milliseconds

1 2 34 5 6 7 8 91011