Home
last modified time | relevance | path

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

/hardware/interfaces/automotive/vehicle/tools/generate_emu_metadata/src/com/android/car/tool/
DEmuMetadataGenerator.java164 FieldDeclaration propertyDef = variables.get(i).asFieldDeclaration(); in parseEnumInterface() local
165 if (!isPublicAndStatic(propertyDef)) { in parseEnumInterface()
169 new ValueField(getFieldName(propertyDef), parseIntEnumField(propertyDef)); in parseEnumInterface()
301 FieldDeclaration propertyDef = variables.get(i).asFieldDeclaration(); in main() local
302 if (!isPublicAndStatic(propertyDef)) { in main()
305 String propertyName = getFieldName(propertyDef); in main()
310 Optional<Comment> maybeComment = propertyDef.getComment(); in main()
317 int propertyId = parseIntEnumField(propertyDef); in main()