Home
last modified time | relevance | path

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

/external/r8/src/main/java/com/android/tools/r8/graph/
DDexType.java32 private int hierarchyLevel = UNKNOWN_LEVEL; field in DexType
58 if (level == hierarchyLevel) { in setLevel()
61 if (hierarchyLevel == INTERFACE_LEVEL) { in setLevel()
64 assert hierarchyLevel == ROOT_LEVEL + 1 || hierarchyLevel == UNKNOWN_LEVEL; in setLevel()
65 hierarchyLevel = INTERFACE_LEVEL; in setLevel()
67 assert hierarchyLevel == UNKNOWN_LEVEL; in setLevel()
68 hierarchyLevel = level; in setLevel()
73 assert hierarchyLevel != UNKNOWN_LEVEL; in addDirectSubtype()
76 type.setLevel(hierarchyLevel + 1); in addDirectSubtype()
84 assert isClassType() && hierarchyLevel != UNKNOWN_LEVEL; in isInterface()
[all …]