Searched refs:sep (Results 1 – 5 of 5) sorted by relevance
/cts/tests/signature/lib/common/src/android/signature/cts/ |
D | ApiComplianceChecker.java | 431 String sep = m.isEmpty() ? "" : " "; in getModifierString() local 433 formatter.format("%senum", sep); in getModifierString() 434 sep = " "; in getModifierString() 437 formatter.format("%svarargs", sep); in getModifierString() 438 sep = " "; in getModifierString() 441 formatter.format("%ssynthetic", sep); in getModifierString() 442 sep = " "; in getModifierString() 445 formatter.format("%sannotation", sep); in getModifierString() 446 sep = " "; in getModifierString() 449 formatter.format("%senum", sep); in getModifierString() [all …]
|
D | ReflectionHelper.java | 368 String sep = ""; in matchesSignature() local 370 jdiffMethodParams.append(sep).append(jdiffParamList.get(i)); in matchesSignature() 371 reflectedMethodParams.append(sep).append(params[i].getTypeName()); in matchesSignature() 372 sep = ", "; in matchesSignature()
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/wifiaware/ |
D | BaseTestCase.java | 165 char sep = 0; in bytesToHex() local 167 sep = separator; in bytesToHex() 173 hexChars[base++] = sep; in bytesToHex()
|
/cts/common/device-side/util-axt/src/com/android/compatibility/common/util/ |
D | UiDumpUtils.java | 545 private static <T> String toString(List<T> l, String sep, Function<T, String> elemToStr) { 546 return fold(l, "", (a, b) -> a + sep + elemToStr.apply(b)); 549 private static <T> String toString(List<T> l, String sep) { 550 return toString(l, sep, String::valueOf);
|
/cts/tests/framework/base/windowmanager/util/src/android/server/wm/ |
D | WindowManagerState.java | 2207 int sep = mName.indexOf('/'); 2208 return sep == -1 ? mName : mName.substring(0, sep);
|