Searched defs:high (Results 1 - 7 of 7) 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/luni/src/main/java/java/util/
H A DDualPivotQuicksort.java1609 * @param high the index of the last element, inclusive, to be searched
1611 private static int findAnyZero(float[] a, int low, int high) { argument
1613 int middle = (low + high) >>> 1;
1619 high = middle - 1;
1982 * @param high the index of the last element, inclusive, to be searched
1984 private static int findAnyZero(double[] a, int low, int high) { argument
1986 int middle = (low + high) >>> 1;
1992 high = middle - 1;
/libcore/luni/src/main/native/
H A Djava_lang_RealToString.cpp67 int high, low, i; local
202 high = compareHighPrecision (Temp, TempLength, S, SLength) >= 0;
204 if (low || high)
221 if (low && !high)
223 else if (high && !low)
H A Djava_nio_charset_Charsets.cpp209 jchar high = (jchar) ch; local
211 if (!U16_IS_SURROGATE_LEAD(high) || !U16_IS_SURROGATE_TRAIL(low)) {
219 ch = U16_GET_SUPPLEMENTARY(high, low);
/libcore/xml/src/main/java/org/kxml2/io/
H A DKXmlSerializer.java577 private void writeSurrogate(char high, char low) throws IOException { argument
579 throw new IllegalArgumentException("Bad surrogate pair (U+" + Integer.toHexString((int) high) +
585 int codePoint = Character.toCodePoint(high, low);
/libcore/libart/src/main/java/java/lang/
H A DString.java123 * Converts the byte array to a string, setting the high byte of every
128 * @param high
129 * the high byte to use.
135 public String(byte[] data, int high) { argument
136 this(data, high, 0, data.length);
153 * Converts the byte array to a string, setting the high byte of every
154 * {@code char} to {@code high}.
164 public String(byte[] data, int high, int offset, int byteCount) { argument
171 high <<= 8;
173 value[i] = (char) (high
[all...]
/libcore/luni/src/main/java/java/lang/
H A DCharacter.java41 * supplementary character are made up of a <i>high surrogate</i> with a value
429 * The minimum value of a high surrogate or leading surrogate unit in UTF-16
437 * The maximum value of a high surrogate or leading surrogate unit in UTF-16
862 * code point values in the high surrogate range 0xD800 to 0xDB7F
868 * represents code point values in the high surrogate range 0xDB80 to
1641 * Indicates whether {@code ch} is a high- (or leading-) surrogate code unit
1647 * @return {@code true} if {@code ch} is a high-surrogate code unit;
1673 * Returns true if the given character is a high or low surrogate.
1683 * @param high
1684 * the high surrogat
1694 isSurrogatePair(char high, char low) argument
1732 toCodePoint(char high, char low) argument
[all...]

Completed in 583 milliseconds