Searched refs:low (Results 1 - 11 of 11) sorted by relevance

/libcore/luni/src/main/java/java/io/
H A DStreamTokenizer.java499 * Specifies that the characters in the range from {@code low} to {@code hi}
504 * @param low
509 public void ordinaryChars(int low, int hi) { argument
510 if (low < 0) {
511 low = 0;
516 for (int i = low; i <= hi; i++) {
634 * Specifies that the characters in the range from {@code low} to {@code hi}
637 * @param low
642 public void whitespaceChars(int low, int hi) { argument
643 if (low <
664 wordChars(int low, int hi) argument
[all...]
/libcore/luni/src/main/java/java/lang/
H A DCharacter.java42 * range of 0xD800 to 0xDBFF and a <i>low surrogate</i> with a value range of
445 * The minimum value of a low surrogate or trailing surrogate unit in UTF-16
453 * The maximum value of a low surrogate or trailing surrogate unit in UTF-16
875 * code point values in the low surrogate range 0xDC00 to 0xDFFF
1657 * Indicates whether {@code ch} is a low- (or trailing-) surrogate code unit
1663 * @return {@code true} if {@code ch} is a low-surrogate code unit;
1673 * Returns true if the given character is a high or low surrogate.
1685 * @param low
1686 * the low surrogate unit to test.
1688 * {@code low} i
1694 isSurrogatePair(char high, char low) argument
1732 toCodePoint(char high, char low) argument
[all...]
H A DRealToString.java287 boolean low, high;
300 low = R < M; // was M_minus
303 if (low || high) {
310 if (low && !high) {
312 } else if (high && !low) {
H A DIntegralToString.java337 int low = (int) (n % 1000000000); // Extract low-order 9 digits
338 int cursor = intIntoCharArray(buf, bufLen, low);
346 * The remaining digits are (n - low) / 1,000,000,000. This
350 n = ((n - low) >>> 9) * 0x8E47CE423A2E9C6DL;
355 * low-order digit, put it in buf, and then call intIntoCharArray
H A DLong.java626 int low = (int) v;
627 return low !=0 ? Integer.numberOfTrailingZeros(low)
/libcore/luni/src/main/native/
H A Djava_lang_RealToString.cpp67 int high, low, i; local
195 low = compareHighPrecision (R, RLength, mminus, mminus_Length) <= 0;
204 if (low || high)
221 if (low && !high)
223 else if (high && !low)
/libcore/xml/src/main/java/org/kxml2/io/
H A DKXmlSerializer.java577 private void writeSurrogate(char high, char low) throws IOException { argument
578 if (!Character.isLowSurrogate(low)) {
580 " U+" + Integer.toHexString((int) low) + ")");
585 int codePoint = Character.toCodePoint(high, low);
/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/libart/src/main/java/java/lang/
H A DAbstractStringBuilder.java504 char low = value[i + 1];
505 if (low >= 0xdc00 && low <= 0xdfff) {
506 newData[--end] = low;
/libcore/luni/src/main/java/java/util/
H A DDualPivotQuicksort.java1608 * @param low the index of the first element, inclusive, to be searched
1611 private static int findAnyZero(float[] a, int low, int high) { argument
1613 int middle = (low + high) >>> 1;
1617 low = middle + 1;
1981 * @param low the index of the first element, inclusive, to be searched
1984 private static int findAnyZero(double[] a, int low, int high) { argument
1986 int middle = (low + high) >>> 1;
1990 low = middle + 1;
H A DCollections.java1439 int low = 0, mid = list.size(), high = mid - 1, result = 1;
1440 while (low <= high) {
1441 mid = (low + high) >>> 1;
1444 low = mid + 1;
1494 int low = 0, mid = list.size(), high = mid - 1, result = 1;
1495 while (low <= high) {
1496 mid = (low + high) >>> 1;
1499 low = mid + 1;

Completed in 187 milliseconds