Searched refs:testCodePointCount (Results 1 – 4 of 4) sorted by relevance
/libcore/ojluni/src/test/java/lang/StringBuffer/ |
D | Supplementary.java | 248 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/ |
D | Supplementary.java | 250 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/ |
D | CodePointCount.java | 76 public void testCodePointCount(String str, int beginIndex, int endIndex, in testCodePointCount() method in CodePointCount
|
/libcore/luni/src/test/java/libcore/java/lang/ |
D | StringTest.java | 629 public void testCodePointCount() { in testCodePointCount() method in StringTest
|