Home
last modified time | relevance | path

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

/packages/services/Car/libs/car-test-lib/src/android/car/test/
DApiHelper.java92 private static Method getMethod(String fullyQualifiedMethodName) throws ClassNotFoundException { in getMethod() argument
98 int classSeparator = fullyQualifiedMethodName.indexOf('#'); in getMethod()
102 String className = fullyQualifiedMethodName.substring(0, classSeparator); in getMethod()
103 String methodSignature = fullyQualifiedMethodName.substring(classSeparator + 1, in getMethod()
104 fullyQualifiedMethodName.length()); in getMethod()
106 Log.d(TAG, "getMethod(" + fullyQualifiedMethodName + "): class=" + className in getMethod()