Searched refs:getCanonicalText (Results 1 – 3 of 3) sorted by relevance
/tools/metalava/src/main/java/com/android/tools/metalava/model/psi/ |
D | PsiTypePrinter.kt | 86 return getCanonicalText(type, elementAnnotations) in <lambda>() 116 private fun getCanonicalText( in <lambda>() method in com.android.tools.metalava.model.psi.PsiTypePrinter 121 is PsiClassReferenceType -> return getCanonicalText(type, elementAnnotations) in <lambda>() 122 is PsiPrimitiveType -> return getCanonicalText(type, elementAnnotations) in <lambda>() 123 is PsiImmediateClassType -> return getCanonicalText(type, elementAnnotations) in <lambda>() 126 getCanonicalText(type.componentType, null), in <lambda>() 129 is PsiArrayType -> return getCanonicalText(type, elementAnnotations) in <lambda>() 133 …val suffix = if (bound == null) null else getCanonicalText(bound, elementAnnotations).removeSuffix… in <lambda>() 138 return getCanonicalText(type.wildcard, elementAnnotations) in <lambda>() 142 getCanonicalText( in <lambda>() [all …]
|
D | PsiTypeItem.kt | 160 getCanonicalText( in toTypeString() 423 … getCanonicalText(codebase, context, type, true, true, kotlinStyleNulls, filter) in toTypeString() 434 private fun getCanonicalText( in getCanonicalText() method 491 type.getCanonicalText(true) in getCanonicalText() 493 type.getCanonicalText(false) in getCanonicalText() 496 return type.getCanonicalText(false) in getCanonicalText()
|
/tools/metalava/src/test/java/com/android/tools/metalava/model/psi/ |
D | PsiTypePrinterTest.kt | 819 val key = type.getCanonicalText(true) in <lambda>() 823 val canonical = type.getCanonicalText(false) in <lambda>()
|