Home
last modified time | relevance | path

Searched refs:getAnnotationValue (Results 1 – 10 of 10) sorted by relevance

/frameworks/support/room/compiler/src/main/kotlin/androidx/room/processor/
DEntityProcessor.kt39 import com.google.auto.common.AnnotationMirrors.getAnnotationValue in <lambda>()
80 .getAnnotationValue(annotation, "inheritSuperIndices").getAsBoolean(false) in <lambda>()
303 .getAnnotationValue(it, "autoGenerate") in <lambda>()
317 val primaryKeyColumns = AnnotationMirrors.getAnnotationValue(it, "primaryKeys") in <lambda>()
355 .getAnnotationValue(it, "autoGenerate").getAsBoolean(false) in <lambda>()
484 .getAnnotationValue(annotation, "tableName").value.toString() in <lambda>()
494 val arrayOfIndexAnnotations = AnnotationMirrors.getAnnotationValue(annotation, in <lambda>()
513 val fieldInput = getAnnotationValue(a, "value").getAsStringList() in <lambda>()
514 val unique = getAnnotationValue(a, "unique").getAsBoolean(false) in <lambda>()
515 val nameValue = getAnnotationValue(a, "name") in <lambda>()
[all …]
DFieldProcessor.kt51 .getAnnotationValue(columnInfoAnnotation.get(), "name") in process()
61 .getAnnotationValue(columnInfoAnnotation.get(), "typeAffinity") in process()
68 collate = Collate.fromAnnotationValue(AnnotationMirrors.getAnnotationValue( in process()
72 .getAnnotationValue(columnInfoAnnotation.get(), "index") in process()
DOnConflictProcessor.kt36 .getAnnotationValue(annotation, fieldName) in extractFrom()
DDatabaseProcessor.kt98 val version = AnnotationMirrors.getAnnotationValue(dbAnnotation, "version") in <lambda>()
100 val exportSchema = AnnotationMirrors.getAnnotationValue(dbAnnotation, "exportSchema") in <lambda>()
243 val entityList = AnnotationMirrors.getAnnotationValue(dbAnnotation, "entities") in <lambda>()
DSuppressWarningProcessor.kt37 val value = AnnotationMirrors.getAnnotationValue(annotation, "value") in getSuppressedWarnings()
DPojoProcessor.kt26 import androidx.room.ext.getAnnotationValue in <lambda>()
374 .getAnnotationValue(Embedded::class.java, "prefix") in <lambda>()
410 val parentColumnInput = AnnotationMirrors.getAnnotationValue(annotation, "parentColumn") in <lambda>()
443 .getAnnotationValue(annotation, "entity").toClassType() in <lambda>()
457 val entityColumnInput = AnnotationMirrors.getAnnotationValue(annotation, "entityColumn") in <lambda>()
479 val projectionInput = AnnotationMirrors.getAnnotationValue(annotation, "projection") in <lambda>()
DRawQueryMethodProcessor.kt80 val entityList = AnnotationMirrors.getAnnotationValue(annotation, "observedEntities") in processObservedTables()
DQueryMethodProcessor.kt76 AnnotationMirrors.getAnnotationValue(annotation, "value").value.toString()) in <lambda>()
DCustomConverterProcessor.kt57 val classes = AnnotationMirrors.getAnnotationValue(annotation, "value") in <lambda>()
/frameworks/support/room/compiler/src/main/kotlin/androidx/room/ext/
Delement_ext.kt117 fun Element.getAnnotationValue(annotation: Class<out Annotation>, fieldName: String): Any? { in getAnnotationValue() method
120 AnnotationMirrors.getAnnotationValue(it, fieldName)?.value in getAnnotationValue()