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 D | Pattern2Test.java | 832 * 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 D | DualPivotQuicksort.java | 1609 * @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 D | java_lang_RealToString.cpp | 67 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 D | java_nio_charset_Charsets.cpp | 209 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/libart/src/main/java/java/lang/ |
H A D | String.java | 133 * Converts the byte array to a string, setting the high byte of every 138 * @param high 139 * the high byte to use. 145 public String(byte[] data, int high) { argument 146 this(data, high, 0, data.length); 163 * Converts the byte array to a string, setting the high byte of every 164 * character to {@code high}. 174 public String(byte[] data, int high, int offset, int byteCount) { argument 181 high <<= 8; 183 value[i] = (char) (high [all...] |
/libcore/libdvm/src/main/java/java/lang/ |
H A D | String.java | 145 * Converts the byte array to a string, setting the high byte of every 150 * @param high 151 * the high byte to use. 157 public String(byte[] data, int high) { argument 158 this(data, high, 0, data.length); 175 * Converts the byte array to a string, setting the high byte of every 176 * character to {@code high}. 186 public String(byte[] data, int high, int offset, int byteCount) { argument 193 high <<= 8; 195 value[i] = (char) (high [all...] |
/libcore/luni/src/main/java/java/lang/ |
H A D | Character.java | 41 * 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 1636 * Indicates whether {@code ch} is a high- (or leading-) surrogate code unit 1642 * @return {@code true} if {@code ch} is a high-surrogate code unit; 1668 * Returns true if the given character is a high or low surrogate. 1678 * @param high 1679 * the high surrogat 1689 isSurrogatePair(char high, char low) argument 1727 toCodePoint(char high, char low) argument [all...] |
Completed in 146 milliseconds