Searched defs:low (Results 1 - 6 of 6) sorted by relevance

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/regex/
H A DPattern2Test.java829 * if (UBlocks[i].low > 0) { m =
830 * p.matcher(Character.toString((char)(UBlocks[i].low-1)));
831 * assertFalse(m.matches()); } for (j=UBlocks[i].low; j <=
840 * if (UBlocks[i].low > 0) { m =
841 * p.matcher(Character.toString((char)(UBlocks[i].low-1)));
842 * assertTrue(m.matches()); } for (j=UBlocks[i].low; j <
852 if (UBlocks[i].low > 0) {
853 m = p.matcher(Character.toString((char) (UBlocks[i].low - 1)));
856 for (j = UBlocks[i].low; j <= UBlocks[i].high; j++) {
867 if (UBlocks[i].low >
1080 UBInfo(int low, int high, String name) argument
1088 public int low, high; field in class:Pattern2Test.UBInfo
[all...]
/libcore/ojluni/src/main/java/java/io/
H A DStreamTokenizer.java267 * <code>low&nbsp;&lt;=&nbsp;<i>c</i>&nbsp;&lt;=&nbsp;high</code>
271 * @param low the low end of the range.
274 public void wordChars(int low, int hi) { argument
275 if (low < 0)
276 low = 0;
279 while (low <= hi)
280 ctype[low++] |= CT_ALPHA;
285 * <code>low&nbsp;&lt;=&nbsp;<i>c</i>&nbsp;&lt;=&nbsp;high</code>
292 * @param low th
295 whitespaceChars(int low, int hi) argument
315 ordinaryChars(int low, int hi) argument
[all...]
/libcore/ojluni/src/main/java/java/lang/
H A DInteger.java626 static final int low = -128; field in class:Integer.IntegerCache
639 h = Math.min(i, Integer.MAX_VALUE - (-low) -1);
643 cache = new Integer[(high - low) + 1];
644 int j = low;
669 if (i >= IntegerCache.low && i <= IntegerCache.high)
670 return IntegerCache.cache[i + (-IntegerCache.low)];
1206 * high-order, side reenter on the right, or low-order.)
1228 * low-order, side reenter on the left, or high-order.)
H A DCharacter.java81 * <em>low-surrogates</em> range (&#92;uDC00-&#92;uDFFF).
99 * this specific value if followed by any low-surrogate value in a string
522 * Unicode low-surrogate code unit</a>
524 * A low-surrogate is also known as a <i>trailing-surrogate</i>.
533 * Unicode low-surrogate code unit</a>
535 * A low-surrogate is also known as a <i>trailing-surrogate</i>.
1777 * This block represents codepoint values in the low surrogate
4578 * Unicode low-surrogate code unit</a>
4608 * a {@linkplain #isLowSurrogate(char) low-surrogate code unit} or
4630 * isHighSurrogate(high) && isLowSurrogate(low)
4640 isSurrogatePair(char high, char low) argument
4676 toCodePoint(char high, char low) argument
[all...]
/libcore/xml/src/main/java/org/kxml2/io/
H A DKXmlSerializer.java603 private void writeSurrogate(char high, char low) throws IOException { argument
604 if (!Character.isLowSurrogate(low)) {
606 " U+" + Integer.toHexString((int) low) + ")");
611 int codePoint = Character.toCodePoint(high, low);
/libcore/ojluni/src/main/java/java/util/
H A DArrays.java1346 * low is the index in dest to start sorting
1348 * off is the offset to generate corresponding low, high in src
1353 int low,
1356 int length = high - low;
1360 for (int i=low; i<high; i++)
1361 for (int j=i; j>low &&
1368 int destLow = low;
1370 low += off;
1372 int mid = (low + high) >>> 1;
1373 mergeSort(dest, src, low, mi
1351 mergeSort(Object[] src, Object[] dest, int low, int high, int off) argument
1546 mergeSort(Object[] src, Object[] dest, int low, int high, int off, Comparator c) argument
[all...]

Completed in 913 milliseconds