HomeSort by relevance Sort by last modified time
    Searched refs:extension (Results 451 - 475 of 2522) sorted by null

<<11121314151617181920>>

  /prebuilts/tools/common/gradle-plugins/repository/com/android/tools/internal/internal-plugins/1.0/
internal-plugins-1.0.jar 
  /prebuilts/tools/common/gradle-plugins/repository/com/android/tools/internal/internal-plugins/1.1/
internal-plugins-1.1.jar 
  /art/runtime/
image.h 378 const std::string& extension) {
381 filename += "." + extension;
383 filename.replace(filename.length() - 3, 3, extension);
  /dalvik/dx/src/com/android/dx/dex/cf/
AttributeTranslator.java 225 AttSourceDebugExtension extension = (AttSourceDebugExtension) local
228 if (extension == null) {
232 return AnnotationUtils.makeSourceDebugExtension(extension.getSmapString());
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
mimetypes.py 7 guess_extension(type, strict=1) -- guess the extension for a given MIME type.
61 URL, and can guess a reasonable extension given a MIME type.
79 """Add a mapping between a type and an extension.
81 When the extension is already known, the new
83 is already known the extension will be added
161 extensions, including the leading dot ('.'). The extension is not
177 """Guess the extension for a file based on its MIME type.
179 Return value is a string giving a filename extension,
180 including the leading dot ('.'). The extension is not
183 guess_type(). If no extension can be guessed for `type', None
575 extension = 0 variable
    [all...]
  /external/autotest/client/cros/multimedia/
audio_facade_native.py 86 """Multimedia test extension handler."""
88 extension = self._resource.get_extension(
90 logging.debug('Loaded extension: %s', extension)
92 audio_extension_handler.AudioExtensionHandler(extension))
  /external/libevent/test/
tinytest.c 387 const char *extension = ""; local
389 extension = ".exe"; /* Add an exe so CreateProcess will work */
390 snprintf(commandname, sizeof(commandname), "%s%s", v[0], extension);
  /external/mesa3d/docs/specs/
MESA_query_renderer.spec 35 This extension interacts with GLX_EXT_create_context_es2_profile and
58 This extension provides a mechanism for the application to query all of
60 addition, this extension provides a mechanism for applications to create
226 If neither extension is supported, remove all mention of
262 RESOLVED. Assuming this extension is ever implemented outside Mesa,
298 GL_ARB_compatibility extension?
329 It is likely that this will be left to a layered extension.
340 this extension it is a bit of a pain for a portable application to query
364 unsigned int, so that's what this extension uses for now. However,
  /external/python/cpython2/Lib/
mimetypes.py 7 guess_extension(type, strict=1) -- guess the extension for a given MIME type.
61 URL, and can guess a reasonable extension given a MIME type.
79 """Add a mapping between a type and an extension.
81 When the extension is already known, the new
83 is already known the extension will be added
161 extensions, including the leading dot ('.'). The extension is not
177 """Guess the extension for a file based on its MIME type.
179 Return value is a string giving a filename extension,
180 including the leading dot ('.'). The extension is not
183 guess_type(). If no extension can be guessed for `type', Non
582 extension = 0 variable
    [all...]
  /external/python/cpython3/Lib/
mimetypes.py 7 guess_extension(type, strict=True) -- guess the extension for a given MIME type.
63 URL, and can guess a reasonable extension given a MIME type.
81 """Add a mapping between a type and an extension.
83 When the extension is already known, the new
85 is already known the extension will be added
163 extensions, including the leading dot ('.'). The extension is not
179 """Guess the extension for a file based on its MIME type.
181 Return value is a string giving a filename extension,
182 including the leading dot ('.'). The extension is not
185 guess_type(). If no extension can be guessed for `type', Non
581 extension = 0 variable
    [all...]
  /external/skia/tools/gpu/gl/egl/
CreatePlatformGLTestContext_egl.cpp 311 static bool supports_egl_extension(EGLDisplay display, const char* extension) {
312 size_t extensionLength = strlen(extension);
314 while (const char* match = strstr(extensionsStr, extension)) {
315 // Ensure the string we found is its own extension, not a substring of a larger extension
  /external/skqp/tools/gpu/gl/egl/
CreatePlatformGLTestContext_egl.cpp 311 static bool supports_egl_extension(EGLDisplay display, const char* extension) {
312 size_t extensionLength = strlen(extension);
314 while (const char* match = strstr(extensionsStr, extension)) {
315 // Ensure the string we found is its own extension, not a substring of a larger extension
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/media/
MediaRecorderFacade.java 50 * Guidance notes: Use e.g. '/sdcard/file.ext' for your media destination file. A file extension of
52 * PC media players). A file extension of mp4 or 3gp will use the appropriate format with the (more
127 String extension = file.toString().split("\\.")[1]; local
128 if (extension.equals("mp4")) {
133 } else if (extension.equals("3gp")) {
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
AttachmentUtilities.java 229 // Otherwise, try to find a mime type based upon the file extension
249 * Extract and return filename's extension, converted to lower case, and not including the "."
251 * @return extension, or null if not found (or null/empty filename)
254 String extension = null; local
258 extension = fileName.substring(lastDot + 1).toLowerCase();
261 return extension;
  /packages/apps/Launcher3/src/com/android/launcher3/logging/
LoggerUtils.java 189 public static Target newTarget(int targetType, TargetExtension extension) {
192 t.extension = extension;
  /packages/apps/UnifiedEmail/src/com/android/mail/compose/
AttachmentsView.java 345 // For virtual files append the inferred extension name.
347 String extension = MimeTypeMap.getSingleton() local
349 if (extension != null) {
350 name += "." + extension;
  /prebuilts/gdb/darwin-x86/lib/python2.7/
mimetypes.py 7 guess_extension(type, strict=1) -- guess the extension for a given MIME type.
61 URL, and can guess a reasonable extension given a MIME type.
79 """Add a mapping between a type and an extension.
81 When the extension is already known, the new
83 is already known the extension will be added
161 extensions, including the leading dot ('.'). The extension is not
177 """Guess the extension for a file based on its MIME type.
179 Return value is a string giving a filename extension,
180 including the leading dot ('.'). The extension is not
183 guess_type(). If no extension can be guessed for `type', Non
578 extension = 0 variable
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
mimetypes.py 7 guess_extension(type, strict=1) -- guess the extension for a given MIME type.
61 URL, and can guess a reasonable extension given a MIME type.
79 """Add a mapping between a type and an extension.
81 When the extension is already known, the new
83 is already known the extension will be added
161 extensions, including the leading dot ('.'). The extension is not
177 """Guess the extension for a file based on its MIME type.
179 Return value is a string giving a filename extension,
180 including the leading dot ('.'). The extension is not
183 guess_type(). If no extension can be guessed for `type', Non
578 extension = 0 variable
    [all...]
  /prebuilts/gradle-plugin/com/android/tools/build/gradle/1.4.0-alpha1/
gradle-1.4.0-alpha1.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/gradle/1.4.0-beta3/
gradle-1.4.0-beta3.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/gradle/1.4.0-beta5/
gradle-1.4.0-beta5.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/gradle/1.4.0-beta6/
gradle-1.4.0-beta6.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/gradle/1.5.0/
gradle-1.5.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/gradle/2.0.0/
gradle-2.0.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/gradle/2.0.0-alpha1/
gradle-2.0.0-alpha1.jar 

Completed in 3962 milliseconds

<<11121314151617181920>>