Searched refs:testCodePoint (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/test/java/lang/StringBuffer/
H A DSupplementary.java91 testCodePoint(At, sb, 0, golden1[0][i]);
92 testCodePoint(At, sb, 9, golden1[1][i]);
93 testCodePoint(At, sb, sb.length()-1, golden1[2][i]);
98 testCodePoint(At, sb, -1);
99 testCodePoint(At, sb, sb.length());
128 testCodePoint(Before, sb, 1, golden2[0][i]);
129 testCodePoint(Before, sb, 13, golden2[1][i]);
130 testCodePoint(Before, sb, sb.length(), golden2[2][i]);
135 testCodePoint(Before, sb, 0);
136 testCodePoint(Befor
311 static void testCodePoint(boolean isAt, StringBuffer sb, int index, int expected) { method in class:Supplementary
319 static void testCodePoint(boolean isAt, StringBuffer sb, int index) { method in class:Supplementary
[all...]
/openjdk7/jdk/test/java/lang/StringBuilder/
H A DSupplementary.java91 testCodePoint(At, sb, 0, golden1[0][i]);
92 testCodePoint(At, sb, 9, golden1[1][i]);
93 testCodePoint(At, sb, sb.length()-1, golden1[2][i]);
98 testCodePoint(At, sb, -1);
99 testCodePoint(At, sb, sb.length());
128 testCodePoint(Before, sb, 1, golden2[0][i]);
129 testCodePoint(Before, sb, 13, golden2[1][i]);
130 testCodePoint(Before, sb, sb.length(), golden2[2][i]);
135 testCodePoint(Before, sb, 0);
136 testCodePoint(Befor
311 static void testCodePoint(boolean isAt, StringBuilder sb, int index, int expected) { method in class:Supplementary
319 static void testCodePoint(boolean isAt, StringBuilder sb, int index) { method in class:Supplementary
[all...]
/openjdk7/jdk/test/java/lang/String/
H A DSupplementary.java108 testCodePoint(At, s, 0, golden1[0][i]);
109 testCodePoint(At, s, 9, golden1[1][i]);
110 testCodePoint(At, s, s.length()-1, golden1[2][i]);
111 testCodePoint(At, s.substring(17), 0, golden1[3][i]);
116 testCodePoint(At, s, -1);
117 testCodePoint(At, s, s.length());
147 testCodePoint(Before, s, 1, golden2[0][i]);
148 testCodePoint(Before, s, 13, golden2[1][i]);
149 testCodePoint(Before, s, s.length(), golden2[2][i]);
150 testCodePoint(Befor
544 static void testCodePoint(boolean isAt, String s, int index, int expected) { method in class:Supplementary
552 static void testCodePoint(boolean isAt, String s, int index) { method in class:Supplementary
[all...]

Completed in 200 milliseconds