Home
last modified time | relevance | path

Searched refs:extension (Results 1 – 25 of 67) sorted by relevance

123

/frameworks/native/vulkan/api/
Dvulkan.api52 @extension("VK_KHR_surface") define VK_KHR_SURFACE_SPEC_VERSION 25
53 @extension("VK_KHR_surface") define VK_KHR_SURFACE_EXTENSION_NAME "VK_KHR_surface"
56 @extension("VK_KHR_swapchain") define VK_KHR_SWAPCHAIN_SPEC_VERSION 68
57 @extension("VK_KHR_swapchain") define VK_KHR_SWAPCHAIN_EXTENSION_NAME "VK_KHR_swapchain"
60 @extension("VK_KHR_display") define VK_KHR_DISPLAY_SPEC_VERSION 21
61 @extension("VK_KHR_display") define VK_KHR_DISPLAY_EXTENSION_NAME "VK_KHR_display"
64 @extension("VK_KHR_display_swapchain") define VK_KHR_DISPLAY_SWAPCHAIN_SPEC_VERSION 9
65 @extension("VK_KHR_display_swapchain") define VK_KHR_DISPLAY_SWAPCHAIN_EXTENSION_NAME "VK_KHR_dis…
68 @extension("VK_KHR_xlib_surface") define VK_KHR_XLIB_SURFACE_SPEC_VERSION 6
69 @extension("VK_KHR_xlib_surface") define VK_KHR_XLIB_SURFACE_NAME "VK_KHR_xlib_surfac…
[all …]
/frameworks/base/core/java/android/webkit/
DMimeTypeMap.java87 public String getMimeTypeFromExtension(String extension) { in getMimeTypeFromExtension() argument
88 return MimeUtils.guessMimeTypeFromExtension(extension); in getMimeTypeFromExtension()
92 private static String mimeTypeFromExtension(String extension) { in mimeTypeFromExtension() argument
93 return MimeUtils.guessMimeTypeFromExtension(extension); in mimeTypeFromExtension()
101 public boolean hasExtension(String extension) { in hasExtension() argument
102 return MimeUtils.hasExtension(extension); in hasExtension()
142 String extension = getFileExtensionFromUrl(url); in remapGenericMimeType() local
143 String newMimeType = getMimeTypeFromExtension(extension); in remapGenericMimeType()
DURLUtil.java306 String extension = null; in guessFileName() local
347 extension = MimeTypeMap.getSingleton().getExtensionFromMimeType(mimeType); in guessFileName()
348 if (extension != null) { in guessFileName()
349 extension = "." + extension; in guessFileName()
352 if (extension == null) { in guessFileName()
355 extension = ".html"; in guessFileName()
357 extension = ".txt"; in guessFileName()
360 extension = ".bin"; in guessFileName()
371 extension = MimeTypeMap.getSingleton().getExtensionFromMimeType(mimeType); in guessFileName()
372 if (extension != null) { in guessFileName()
[all …]
/frameworks/base/tools/validatekeymaps/
DMain.cpp51 const char *extension = strrchr(filename, '.'); in getFileType() local
52 if (extension) { in getFileType()
53 if (strcmp(extension, ".kl") == 0) { in getFileType()
56 if (strcmp(extension, ".kcm") == 0) { in getFileType()
59 if (strcmp(extension, ".idc") == 0) { in getFileType()
/frameworks/av/media/libstagefright/
DStagefrightMediaScanner.cpp37 static bool FileHasAcceptableExtension(const char *extension) { in FileHasAcceptableExtension() argument
49 if (!strcasecmp(extension, kValidExtensions[i])) { in FileHasAcceptableExtension()
72 const char *extension = strrchr(path, '.'); in processFileInternal() local
74 if (!extension) { in processFileInternal()
78 if (!FileHasAcceptableExtension(extension)) { in processFileInternal()
/frameworks/base/tools/split-select/
DSplitDescription.cpp71 String8 extension; in toString() local
73 if (extension.isEmpty()) { in toString()
74 extension.append(":"); in toString()
76 extension.append("-"); in toString()
78 extension.append(abi::toString(abi)); in toString()
81 str.append(extension); in toString()
/frameworks/support/core-utils/java/android/support/v4/provider/
DRawDocumentFile.java38 final String extension = MimeTypeMap.getSingleton().getExtensionFromMimeType(mimeType); in createFile() local
39 if (extension != null) { in createFile()
40 displayName += "." + extension; in createFile()
153 final String extension = name.substring(lastDot + 1).toLowerCase(); in getTypeForName() local
154 final String mime = MimeTypeMap.getSingleton().getMimeTypeFromExtension(extension); in getTypeForName()
/frameworks/base/media/java/android/media/
DMediaFile.java148 static void addFileType(String extension, int fileType, String mimeType) { in addFileType() argument
149 sFileTypeMap.put(extension, new MediaFileType(fileType, mimeType)); in addFileType()
153 private static void addFileType(String extension, int fileType, String mimeType, in addFileType() argument
155 addFileType(extension, fileType, mimeType); in addFileType()
156 sFileTypeToFormatMap.put(extension, Integer.valueOf(mtpFormatCode)); in addFileType()
363 String extension = fileName.substring(lastDot + 1).toUpperCase(Locale.ROOT); in getFormatCode() local
364 Integer value = sFileTypeToFormatMap.get(extension); in getFormatCode()
/frameworks/compile/mclinker/lib/MC/
DSearchDirs.cpp108 entry.path()->extension().native()) { in find()
122 entry.path()->extension().native()) { in find()
173 entry.path()->extension().native()) { in find()
187 entry.path()->extension().native()) { in find()
/frameworks/base/tools/aapt2/cmd/
DCompile.cpp58 std::string extension; member
102 StringPiece extension; in ExtractResourcePathData() local
105 extension = name.substr(dot_pos + 1, filename.size() - (dot_pos + 1)); in ExtractResourcePathData()
110 extension.to_string(), config_str.to_string(), config}; in ExtractResourcePathData()
129 if (!data.extension.empty()) { in BuildIntermediateFilename()
130 name << "." << data.extension; in BuildIntermediateFilename()
500 if (path_data.extension == "9.png") { in CompilePng()
731 path_data.extension = "arsc"; in Compile()
742 if (path_data.extension == "xml") { in Compile()
747 (path_data.extension == "png" || path_data.extension == "9.png")) { in Compile()
/frameworks/native/services/surfaceflinger/RenderEngine/
DGLExtensions.cpp60 bool GLExtensions::hasExtension(char const* extension) const in hasExtension()
62 const String8 s(extension); in hasExtension()
/frameworks/native/vulkan/libvulkan/
Dcode-generator.tmpl415 {{$ext := GetAnnotation $ "extension"}}
497 // Exported extension functions may be invoked even when their extensions
510 Emits a stub for an exported extension function.
516 {{$ext := GetAnnotation $ "extension"}}
710 Emits true if an extension is intercepted by vulkan::driver.
752 {{$ext := GetAnnotation $ "extension"}}
770 {{$ext := GetAnnotation $ "extension"}}
804 Extension extension;
834 {{$ext := GetAnnotation $ "extension"}}
866 {{$ext := GetAnnotation $ "extension"}}
[all …]
/frameworks/data-binding/developmentPlugins/localizeMavenPlugin/src/main/groovy/android/databinding/
DLocalizeDependenciesTask.groovy70 LocalizePluginExtension extension = project.extensions.
72 if (extension.localRepoDir == null || extension.otherRepoDirs == null) {
76 " otherRepoDirs. localRepoDir: " + extension.localRepoDir +
77 "\notherRepoDir:" + extension.otherRepoDirs;
82 localRepoDir = extension.localRepoDir
83 downloadAll(extension.localRepoDir, extension.otherRepoDirs)
/frameworks/base/tools/layoutlib/rename_font/
Dbuild_font_single.py74 extension = os.path.splitext(input_path)[1].lower()
75 if extension in EXTENSIONS:
76 if not COPY_ONLY and extension == '.ttf':
Dbuild_font.py84 extension = os.path.splitext(filename)[1].lower()
85 if extension == '.ttf':
87 elif extension == '.xml':
/frameworks/native/opengl/specs/
DEGL_ANDROID_get_native_client_buffer.txt35 This extension is written against the wording of the EGL 1.2
41 This extension allows creating an EGLClientBuffer from an Android
84 1. Should this extension define what particular AHardwareBuffer formats EGL
DEGL_ANDROID_image_native_buffer.txt37 This extension is written against the wording of the EGL 1.2
42 This extension enables using an Android window buffer (struct
96 1. Should this extension define what combinations of ANativeWindowBuffer
DEGL_ANDROID_recordable.txt33 This extension is written against the wording of the EGL 1.4 Specification
41 incompatible with these ANativeWindows. This extension introduces a new
100 bit in the limit-size bitfield for a platform-specific extension.
110 3. How is this extension expected to be implemented?
112 RESPONSE: There are two basic approaches to implementing this extension
DEGL_ANDROID_front_buffer_auto_refresh.txt33 This extension is written against the wording of the EGL 1.5 Specification
37 This extension is intended for latency-sensitive applications that are doing
DEGL_ANDROID_blob_cache.txt33 This extension is written against the wording of the EGL 1.4 Specification
44 This extension provides a mechanism through which client API
51 While the focus of this extension is on providing a persistent cache for
56 Note that although this extension is written as if the application
58 as part of the Android EGL module. This extension is not exposed to
204 - Fix typo in New Functions section & assign extension #.
DEGL_ANDROID_framebuffer_target.txt33 This extension is written against the wording of the EGL 1.4 Specification
41 be incompatible with these ANativeWindows. This extension introduces a
/frameworks/av/drm/libdrmframework/plugins/passthru/src/
DDrmPassthruPlugIn.cpp162 String8 extension = path.getPathExtension(); in onCanHandle() local
163 extension.toLower(); in onCanHandle()
164 return (String8(".passthru") == extension); in onCanHandle()
/frameworks/compile/mclinker/include/mcld/LD/
DDiagMips.inc32 "MIPS16 extension is unsupported: %0",
33 "MIPS16 extension is unsupported: %0")
/frameworks/av/drm/libdrmframework/include/
DPlugInManager.h231 String8 extension(sName.getPathExtension()); in isPlugIn()
233 return extension == String8(PLUGIN_EXTENSION); in isPlugIn()
/frameworks/base/packages/SystemUI/scripts/
Dnew_merge.py119 def getFileList(rootdir, extension): argument
125 if (os.path.splitext(f)[1] == extension and (not inIgnore(f))):

123