Home
last modified time | relevance | path

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

/frameworks/base/apct-tests/perftests/utils/src/android/perftests/utils/
DPerfStatusReporter.java66 String invokeMethodName = description.getMethodName(); in apply()
67 Log.i(TAG, "Running " + description.getClassName() + "#" + invokeMethodName); in apply()
72 if (invokeMethodName.startsWith("test")) { in apply()
73 assertTrue("The test name " + invokeMethodName + " is too short", in apply()
74 invokeMethodName.length() > 5); in apply()
75 invokeMethodName = invokeMethodName.substring(4, 5).toLowerCase() in apply()
76 + invokeMethodName.substring(5); in apply()
79 int index = invokeMethodName.lastIndexOf('['); in apply()
82 for (int i = index + 1; i < invokeMethodName.length() - 1; i++) { in apply()
83 if (!Character.isDigit(invokeMethodName.charAt(i))) { in apply()
[all …]