/tools/metalava/src/test/java/com/android/tools/metalava/model/ |
D | TextBackedAnnotationItemTest.kt | 44 assertEquals("@androidx.annotation.Nullable", annotation.toSource()) in supportsDocumentation() 55 assertEquals("@androidx.annotation.IntRange(from = 20, to = 40)", annotation.toSource()) in testIntRange() 72 annotation.toSource() in testIntDef() 88 assertEquals("STYLE_NO_TITLE", list[1].toSource()) in testIntDef()
|
/tools/metalava/src/main/java/com/android/tools/metalava/model/psi/ |
D | PsiAnnotationItem.kt | 56 override fun toString(): String = toSource() in <lambda>() 58 override fun toSource(target: AnnotationTarget, showDefaultAttrs: Boolean): String { in <lambda>() method in com.android.tools.metalava.model.psi.PsiAnnotationItem 107 return codebase.createAnnotation(xmlAnnotation.toSource(), context) in <lambda>() 284 override fun toString(): String = toSource() in toString() 314 override fun toSource(): String = psiValue.text in toString() method in PsiAnnotationSingleAttributeValue 334 override fun toSource(): String = value.text method
|
D | UAnnotationItem.kt | 56 override fun toString(): String = toSource() in <lambda>() 58 override fun toSource(target: AnnotationTarget, showDefaultAttrs: Boolean): String { in <lambda>() method in com.android.tools.metalava.model.psi.UAnnotationItem 284 override fun toString(): String = toSource() in toString() 325 override fun toSource(): String = getText(psiValue) in toString() method in UAnnotationSingleAttributeValue 345 override fun toSource(): String = getText(value) in toSource() method
|
D | PsiTypePrinter.kt | 526 sb.append(annotation.toSource()).append(' ') in <lambda>()
|
/tools/metalava/src/main/java/com/android/tools/metalava/ |
D | DocAnalyzer.kt | 303 val v: Any = value.value() ?: value.toSource() in <lambda>() 312 val v = value.value()?.toString() ?: value.toSource() in <lambda>() 324 sb.append(value.toSource()) in <lambda>() 346 val from: String? = annotation.findAttribute("from")?.value?.toSource() in <lambda>() 347 val to: String? = annotation.findAttribute("to")?.value?.toSource() in <lambda>() 372 val flag = annotation.findAttribute("flag")?.value?.toSource() == "true" in <lambda>() 420 sb.append(value.toSource()) in <lambda>()
|
D | AnnotationFilter.kt | 110 val existingValueSource = existingValue?.toSource() in annotationsMatch() 111 val attributeValueSource = attribute.value.toSource() in annotationsMatch() 180 return AnnotationFilterEntry.fromSource(annotationItem.toSource()) in fromAnnotationItem()
|
D | AnnotationsMerger.kt | 286 annotation.toSource(showDefaultAttrs = false), in <lambda>() 812 override fun toSource(target: AnnotationTarget, showDefaultAttrs: Boolean): String { in toSource() method
|
D | AndroidApiChecks.kt | 194 var perm = value.toSource() in checkRequiresPermission()
|
D | KotlinInteropChecks.kt | 107 val source = v.toSource() in <lambda>()
|
D | ApiAnalyzer.kt | 715 val perm = (value.value() ?: value.toSource()).toString() in <lambda>()
|
/tools/metalava/src/main/java/com/android/tools/metalava/model/ |
D | AnnotationItem.kt | 71 fun toSource( in toSource() method 660 fun toSource(): String in toSource() method 795 override fun toString(): String = toSource() in toString() 820 override fun toSource() = valueSource in toString() method in com.android.tools.metalava.model.DefaultAnnotationSingleAttributeValue 834 override fun toSource() = value method in com.android.tools.metalava.model.DefaultAnnotationArrayAttributeValue
|
D | ModifierList.kt | 521 val source = printAnnotation.toSource(target, showDefaultAttrs = false) in <lambda>()
|
D | ClassItem.kt | 375 val source = value?.value?.toSource() in <lambda>()
|
/tools/metalava/src/main/java/com/android/tools/metalava/model/text/ |
D | TextBackedAnnotationItem.kt | 59 override fun toSource(target: AnnotationTarget, showDefaultAttrs: Boolean): String = full method
|
D | TextModifiers.kt | 74 … override fun toSource(target: AnnotationTarget, showDefaultAttrs: Boolean): String = source in <lambda>() method
|