Home
last modified time | relevance | path

Searched refs:ConstDef (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/tools/codegen/src/com/android/codegen/
DGenerators.kt54 val constDef = ConstDef(type = when { in ClassPrinter()
55 type == "String" -> ConstDef.Type.STRING in ClassPrinter()
56 flag -> ConstDef.Type.INT_FLAGS in ClassPrinter()
57 else -> ConstDef.Type.INT in ClassPrinter()
73 val ConstDef = classRef("android.annotation.${type.capitalize()}Def") in ClassPrinter() constant
78 "@$ConstDef(${if_(flag, "flag = true, ")}prefix = \"${prefix}_\", value = {" { in ClassPrinter()
831 if (intOrStringDef!!.type == ConstDef.Type.INT_FLAGS) {
DConstDef.kt8 data class ConstDef(val type: Type, val AnnotationName: String, val values: List<FieldDeclaration>)… class
DClassInfo.kt23 val constDefs = mutableListOf<ConstDef>() in <lambda>()
DFieldInfo.kt113 var intOrStringDef = null as ConstDef? in <lambda>()