Home
last modified time | relevance | path

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

/aosp12/frameworks/base/tools/codegen/src/com/android/codegen/
H A DUtils.kt8 import com.github.javaparser.ast.body.TypeDeclaration
102 val TypeDeclaration<*>.nestedTypes get() = childNodes.filterIsInstance<TypeDeclaration<*>>() regex
103 val TypeDeclaration<*>.nestedDataClasses get() regex
106 val TypeDeclaration<*>.nestedNonDataClasses get() regex
110 val TypeDeclaration<*>.startLine get() = range.get()!!.begin.line regex
H A DClassInfo.kt4 import com.github.javaparser.ast.body.TypeDeclaration
11 val nestedTypes = classAst.members.filterIsInstance<TypeDeclaration<*>>()
H A DClassPrinter.kt6 import com.github.javaparser.ast.body.TypeDeclaration
223 .filterIsInstance(TypeDeclaration::class.java)
H A DFileInfo.kt23 import com.github.javaparser.ast.body.TypeDeclaration
82 it.name == (ast.parentNode.get()!! as TypeDeclaration<*>).nameAsString
/aosp12/frameworks/base/tools/xmlpersistence/src/main/kotlin/
H A DParser.kt24 import com.github.javaparser.ast.body.TypeDeclaration
96 for (typeDeclaration in compilationUnit.getNodesByClass<TypeDeclaration<*>>()) {