Home
last modified time | relevance | path

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

/platform_testing/libraries/flicker/utils/src/android/tools/traces/component/
DComponentNameMatcher.kt161 val sep = str.indexOf('/') in unflattenFromString() constant
162 if (sep < 0 || sep + 1 >= str.length) { in unflattenFromString()
165 val pkg = str.substring(0, sep) in unflattenFromString()
166 var cls = str.substring(sep + 1) in unflattenFromString()
183 val sep = str.indexOf('/') in unflattenFromStringWithJunk() constant
184 if (sep < 0 || sep + 1 >= str.length) { in unflattenFromStringWithJunk()
188 var pkg = str.substring(0, sep) in unflattenFromStringWithJunk()
202 var cls = str.substring(sep + 1) in unflattenFromStringWithJunk()
/platform_testing/libraries/health/runners/longevity/platform/tests/src/android/platform/test/longevity/
DLongevityClassRunnerTest.java472 String sep = "--"; in testReportIteration_withIteration_withCustomSeparator() local
474 args.putString(LongevityClassRunner.ITERATION_SEP_OPTION, sep); in testReportIteration_withIteration_withCustomSeparator()
484 captor.getValue().getClassName().matches(String.join(sep, "^.*", "7$"))); in testReportIteration_withIteration_withCustomSeparator()