Home
last modified time | relevance | path

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

/tools/metalava/src/main/java/com/android/tools/metalava/model/text/
DTextTypeItem.kt144 …private fun findTypeVariableBounds(typeParameterList: TypeParameterList, name: String): List<Class… in findTypeVariableBounds() method
157 private fun findTypeVariableBounds(context: Item?, name: String): List<ClassItem> { in findTypeVariableBounds() method
159 val bounds = findTypeVariableBounds(context.typeParameterList(), name) in findTypeVariableBounds()
163 return findTypeVariableBounds(context.containingClass().typeParameterList(), name) in findTypeVariableBounds()
165 return findTypeVariableBounds(context.typeParameterList(), name) in findTypeVariableBounds()
177 val bounds = findTypeVariableBounds(context, typeParameter.simpleName()) in asTypeParameter()