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

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/regex/
H A DPattern2Test.java832 * UBlocks[i].high; j++) { m =
834 * if (UBlocks[i].high < 0xFFFF) { m =
835 * p.matcher(Character.toString((char)(UBlocks[i].high+1)));
843 * UBlocks[i].high; j++) { m =
845 * if (UBlocks[i].high < 0xFFFF) { m =
846 * p.matcher(Character.toString((char)(UBlocks[i].high+1)));
856 for (j = UBlocks[i].low; j <= UBlocks[i].high; j++) {
860 if (UBlocks[i].high < 0xFFFF) {
861 m = p.matcher(Character.toString((char) (UBlocks[i].high + 1)));
871 for (j = UBlocks[i].low; j < UBlocks[i].high;
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 DStringFactory.java49 public static String newStringFromBytes(byte[] data, int high) { argument
50 return newStringFromBytes(data, high, 0, data.length);
58 public static native String newStringFromBytes(byte[] data, int high, int offset, int byteCount); argument
/libcore/ojluni/src/main/java/java/lang/
H A DInteger.java810 * During VM initialization, java.lang.Integer.IntegerCache.high property
817 static final int high; field in class:Integer.IntegerCache
821 // high value may be configured by property
824 sun.misc.VM.getSavedProperty("java.lang.Integer.IntegerCache.high");
835 high = h;
837 cache = new Integer[(high - low) + 1];
843 assert IntegerCache.high >= 127;
865 if (i >= IntegerCache.low && i <= IntegerCache.high)
1291 * high-order 32 bits of the {@code long} are zero and the
1493 * high
[all...]
H A DCharacter.java80 * of {@code char} values, the first from the <em>high-surrogates</em>
497 * Unicode high-surrogate code unit</a>
499 * A high-surrogate is also known as a <i>leading-surrogate</i>.
508 * Unicode high-surrogate code unit</a>
510 * A high-surrogate is also known as a <i>leading-surrogate</i>.
1749 * This block represents codepoint values in the high surrogate
1762 * This block represents codepoint values in the private use high
4735 * Unicode high-surrogate code unit</a>
4791 * a {@linkplain #isHighSurrogate(char) high-surrogate code unit}.
4812 * isHighSurrogate(high)
4822 isSurrogatePair(char high, char low) argument
4858 toCodePoint(char high, char low) argument
[all...]
/libcore/ojluni/src/main/java/java/util/
H A DArrays.java1326 * high is the end index in dest to end sorting
1327 * off is the offset to generate corresponding low, high in src
1334 int high,
1336 int length = high - low;
1340 for (int i=low; i<high; i++)
1349 int destHigh = high;
1351 high += off;
1352 int mid = (low + high) >>> 1;
1354 mergeSort(dest, src, mid, high, -off);
1365 if (q >= high ||
1331 mergeSort(Object[] src, Object[] dest, int low, int high, int off) argument
[all...]
/libcore/xml/src/main/java/org/kxml2/io/
H A DKXmlSerializer.java603 private void writeSurrogate(char high, char low) throws IOException { argument
605 throw new IllegalArgumentException("Bad surrogate pair (U+" + Integer.toHexString((int) high) +
611 int codePoint = Character.toCodePoint(high, low);

Completed in 129 milliseconds