HomeSort by relevance Sort by last modified time
    Searched refs:UBlocks (Results 1 - 2 of 2) sorted by null

  /libcore/luni/src/test/java/org/apache/harmony/regex/tests/java/util/regex/
Pattern2Test.java 918 for (i = 0; i < UBlocks.length; i++) {
920 * p = Pattern.compile("\\p{"+UBlocks[i].name+"}");
922 * if (UBlocks[i].low > 0) { m =
923 * p.matcher(Character.toString((char)(UBlocks[i].low-1)));
924 * assertFalse(m.matches()); } for (j=UBlocks[i].low; j <=
925 * UBlocks[i].high; j++) { m =
927 * assertTrue(m.matches()); } if (UBlocks[i].high < 0xFFFF) { m =
928 * p.matcher(Character.toString((char)(UBlocks[i].high+1)));
931 * p = Pattern.compile("\\P{"+UBlocks[i].name+"}");
933 * if (UBlocks[i].low > 0) { m
    [all...]
  /external/apache-harmony/regex/src/test/java/org/apache/harmony/tests/java/util/regex/
Pattern2Test.java 855 for (i = 0; i < UBlocks.length; i++) {
857 * p = Pattern.compile("\\p{"+UBlocks[i].name+"}");
859 * if (UBlocks[i].low > 0) { m =
860 * p.matcher(Character.toString((char)(UBlocks[i].low-1)));
861 * assertFalse(m.matches()); } for (j=UBlocks[i].low; j <=
862 * UBlocks[i].high; j++) { m =
864 * if (UBlocks[i].high < 0xFFFF) { m =
865 * p.matcher(Character.toString((char)(UBlocks[i].high+1)));
868 * p = Pattern.compile("\\P{"+UBlocks[i].name+"}");
870 * if (UBlocks[i].low > 0) { m
    [all...]

Completed in 192 milliseconds