Home
last modified time | relevance | path

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

/libcore/ojluni/src/test/java/lang/StringBuffer/
DSupplementary.java248 testCodePointCount(null, 0, 0, NullPointerException.class); in test5()
249 testCodePointCount(sb, -1, length, IndexOutOfBoundsException.class); in test5()
250 testCodePointCount(sb, 0, length+1, IndexOutOfBoundsException.class); in test5()
251 testCodePointCount(sb, length, length-1, IndexOutOfBoundsException.class); in test5()
352 static void testCodePointCount(StringBuffer sb, int beginIndex, int endIndex, in testCodePointCount() method in Supplementary
/libcore/ojluni/src/test/java/lang/StringBuilder/
DSupplementary.java250 testCodePointCount(null, 0, 0, NullPointerException.class); in test5()
251 testCodePointCount(sb, -1, length, IndexOutOfBoundsException.class); in test5()
252 testCodePointCount(sb, 0, length+1, IndexOutOfBoundsException.class); in test5()
253 testCodePointCount(sb, length, length-1, IndexOutOfBoundsException.class); in test5()
367 static void testCodePointCount(StringBuilder sb, int beginIndex, int endIndex, in testCodePointCount() method in Supplementary
/libcore/ojluni/src/test/java/lang/String/CompactString/
DCodePointCount.java76 public void testCodePointCount(String str, int beginIndex, int endIndex, in testCodePointCount() method in CodePointCount
/libcore/luni/src/test/java/libcore/java/lang/
DStringTest.java629 public void testCodePointCount() { in testCodePointCount() method in StringTest