Searched refs:checkSetCharAt (Results 1 – 2 of 2) sorted by relevance
/libcore/ojluni/src/test/java/lang/StringBuilder/ |
D | CompactStringBuilder.java | 88 checkSetCharAt(new StringBuilder(ORIGIN), 0, '\uFF21', "\uFF21"); in testCompactStringBuilderForLatinA() 126 checkSetCharAt(new StringBuilder(ORIGIN), 0, 'A', "A"); in testCompactStringBuilderForNonLatinA() 155 checkSetCharAt(new StringBuilder(ORIGIN), 0, 'A', "AA"); in testCompactStringBuilderForMixedA1() 255 checkSetCharAt(new StringBuilder(ORIGIN), 1, '\uDC01', in testCompactStringForSupplementaryCodePoint() 257 checkSetCharAt(new StringBuilder(ORIGIN), 1, 'A', "\uD801A\uD801\uDC01"); in testCompactStringForSupplementaryCodePoint() 379 private void checkSetCharAt(StringBuilder sb, int index, char ch, in checkSetCharAt() method in CompactStringBuilder
|
/libcore/ojluni/src/test/java/lang/StringBuffer/ |
D | CompactStringBuffer.java | 88 checkSetCharAt(new StringBuffer(ORIGIN), 0, '\uFF21', "\uFF21"); in testCompactStringBufferForLatinA() 126 checkSetCharAt(new StringBuffer(ORIGIN), 0, 'A', "A"); in testCompactStringBufferForNonLatinA() 154 checkSetCharAt(new StringBuffer(ORIGIN), 0, 'A', "AA"); in testCompactStringBufferForMixedA1() 254 checkSetCharAt(new StringBuffer(ORIGIN), 1, '\uDC01', in testCompactStringForSupplementaryCodePoint() 256 checkSetCharAt(new StringBuffer(ORIGIN), 1, 'A', "\uD801A\uD801\uDC01"); in testCompactStringForSupplementaryCodePoint() 454 private void checkSetCharAt(StringBuffer sb, int index, char ch, in checkSetCharAt() method in CompactStringBuffer
|