Home
last modified time | relevance | path

Searched refs:AnnotationName (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/tools/codegen/src/com/android/codegen/
DGenerators.kt44 var AnnotationName = prefix.split("_") in ClassPrinter() variable
50 AnnotationName = annotatedConst.second.annotations.first().nameAsString in ClassPrinter()
59 AnnotationName = AnnotationName, in ClassPrinter()
64 if (fieldAst.annotations.any { it.nameAsString == AnnotationName }) { in ClassPrinter()
85 +"$visibility @interface $AnnotationName {}" in ClassPrinter()
94 "@$AnnotationName int value)" in ClassPrinter()
103 !"static String single${AnnotationName}ToString(@$AnnotationName int value)" in ClassPrinter()
DConstDef.kt8 data class ConstDef(val type: Type, val AnnotationName: String, val values: List<FieldDeclaration>)… constant in com.android.codegen.ConstDef
DInputSignaturesComputation.kt140 constDefs.find { it.AnnotationName == className }?.let { return thisClassPrefix + className } in getFullClassName()