Home
last modified time | relevance | path

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

/tools/metalava/metalava-model/src/main/java/com/android/tools/metalava/model/
DTypeItem.kt949 val lastDotIndex = qualifiedName.lastIndexOf('.') in hashCodeForType() constant
950 return if (lastDotIndex == -1) { in hashCodeForType()
953 qualifiedName.substring(lastDotIndex + 1) in hashCodeForType()
1103 var lastDotIndex = -1 in hashCodeForType() variable
1112 lastDotIndex = i in hashCodeForType()
1117 return if (lastDotIndex == -1) { in hashCodeForType()
1120 qualifiedName.substring(lastDotIndex + 1) in hashCodeForType()