Home
last modified time | relevance | path

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

/aosp12/frameworks/base/tools/codegen/src/com/android/codegen/
H A DFieldInfo.kt224 isIInterface(Type) -> "StrongInterface"
229 private fun isBinder(type: String) = type == "Binder" || type == "IBinder" || isIInterface(type)
230 …private fun isIInterface(type: String) = type.length >= 2 && type[0] == 'I' && type[1].isUpperCase… regex