Home
last modified time | relevance | path

Searched refs:commonType (Results 1 – 2 of 2) sorted by relevance

/aosp12/packages/apps/DocumentsUI/src/com/android/documentsui/base/
H A DMimeTypes.java134 String[] commonType = splitMimeType(mimeTypes.get(0)); in findCommonMimeType() local
135 if (commonType == null) { in findCommonMimeType()
143 if (!commonType[1].equals(type[1])) { in findCommonMimeType()
144 commonType[1] = "*"; in findCommonMimeType()
147 if (!commonType[0].equals(type[0])) { in findCommonMimeType()
148 commonType[0] = "*"; in findCommonMimeType()
149 commonType[1] = "*"; in findCommonMimeType()
154 return commonType[0] + "/" + commonType[1]; in findCommonMimeType()
/aosp12/frameworks/base/tools/codegen/src/com/android/codegen/
H A DInputSignaturesComputation.kt25 append(getFullClassName(fieldAst.commonType))