Searched refs:isHighSurrogate (Results 1 - 25 of 48) sorted by relevance

12

/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
H A DUTF16CollationIterator.java79 if(Character.isHighSurrogate(c) && pos != limit &&
96 Character.isHighSurrogate(lead = seq.charAt(pos - 1))) {
128 if(Character.isHighSurrogate(c) && pos != limit &&
141 Character.isHighSurrogate(seq.charAt(pos-1))) {
H A DFCDUTF16CollationIterator.java128 if(Character.isHighSurrogate(c) && pos != limit &&
164 Character.isHighSurrogate(lead = seq.charAt(pos - 1))) {
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
H A DUTF16CollationIterator.java77 if(Character.isHighSurrogate(c) && pos != limit &&
94 Character.isHighSurrogate(lead = seq.charAt(pos - 1))) {
126 if(Character.isHighSurrogate(c) && pos != limit &&
139 Character.isHighSurrogate(seq.charAt(pos-1))) {
H A DFCDUTF16CollationIterator.java126 if(Character.isHighSurrogate(c) && pos != limit &&
162 Character.isHighSurrogate(lead = seq.charAt(pos - 1))) {
/external/guava/guava/src/com/google/common/base/
H A DStrings.java236 && Character.isHighSurrogate(string.charAt(index))
/external/icu/android_icu4j/src/main/java/android/icu/lang/
H A DCharSequences.java255 || !Character.isHighSurrogate(s.charAt(i-1))
H A DUCharacter.java5258 * Same as {@link Character#isHighSurrogate}.
5263 public static boolean isHighSurrogate(char ch) { method in class:UCharacter
5264 return Character.isHighSurrogate(ch);
5324 if (isHighSurrogate(c1)) {
5346 if (isHighSurrogate(c1)) {
5372 if (isHighSurrogate(c1)) {
5397 if (isHighSurrogate(c1)) {
5419 if (isHighSurrogate(c1)) {
5445 if (isHighSurrogate(c1)) {
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/lang/
H A DUCharacterSurrogateTest.java78 .isHighSurrogate((char) (UCharacter.MIN_HIGH_SURROGATE - 1)))
80 if (!UCharacter.isHighSurrogate(UCharacter.MIN_HIGH_SURROGATE))
82 if (!UCharacter.isHighSurrogate(UCharacter.MAX_HIGH_SURROGATE))
85 .isHighSurrogate((char) (UCharacter.MAX_HIGH_SURROGATE + 1)))
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/lang/
H A DCharSequences.java253 || !Character.isHighSurrogate(s.charAt(i-1))
H A DUCharacter.java5905 * Same as {@link Character#isHighSurrogate}.
5911 public static boolean isHighSurrogate(char ch) { method in class:UCharacter
5912 return Character.isHighSurrogate(ch);
5977 if (isHighSurrogate(c1)) {
6000 if (isHighSurrogate(c1)) {
6027 if (isHighSurrogate(c1)) {
6053 if (isHighSurrogate(c1)) {
6076 if (isHighSurrogate(c1)) {
6103 if (isHighSurrogate(c1)) {
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
H A DUCharacterSurrogateTest.java77 .isHighSurrogate((char) (UCharacter.MIN_HIGH_SURROGATE - 1)))
79 if (!UCharacter.isHighSurrogate(UCharacter.MIN_HIGH_SURROGATE))
81 if (!UCharacter.isHighSurrogate(UCharacter.MAX_HIGH_SURROGATE))
84 .isHighSurrogate((char) (UCharacter.MAX_HIGH_SURROGATE + 1)))
/external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
H A DDOM3TreeWalker.java1173 if (XMLChar.isHighSurrogate(ch) && i < datalength) {
1194 if (XMLChar.isHighSurrogate(ch) && i < datalength) {
1236 if (XMLChar.isHighSurrogate(ch) && i < datalength) {
1257 if (XMLChar.isHighSurrogate(ch) && i < datalength) {
1297 if (XMLChar.isHighSurrogate(c) && i < datalength) {
1346 if (XMLChar.isHighSurrogate(c) && i < datalength) {
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DNormalizer.java2308 if(0<=(s1-2) && Character.isHighSurrogate(c=cs1.charAt(s1-2))) {
2324 if(0<=(s2-2) && Character.isHighSurrogate(c=cs2.charAt(s2-2))) {
2540 (Character.isLowSurrogate((char)c1) && 0!=(s1-1) && Character.isHighSurrogate(cs1.charAt(s1-2)))
2550 (Character.isLowSurrogate((char)c2) && 0!=(s2-1) && Character.isHighSurrogate(cs2.charAt(s2-2)))
H A DScientificNumberFormatter.java277 if (UCharacter.isHighSurrogate(c1)) {
H A DCollationElementIterator.java456 (Character.isHighSurrogate(c) && !rbc_.isUnsafe(string_.codePointAt(offset)))) {
H A DStringSearch.java581 if (!Character.isHighSurrogate(ch)) {
1238 if (Character.isHighSurrogate(codeUnit)) {
1255 if (Character.isHighSurrogate(prevUnit)) {
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DNormalizer.java2249 if(0<=(s1-2) && Character.isHighSurrogate(c=cs1.charAt(s1-2))) {
2265 if(0<=(s2-2) && Character.isHighSurrogate(c=cs2.charAt(s2-2))) {
2481 (Character.isLowSurrogate((char)c1) && 0!=(s1-1) && Character.isHighSurrogate(cs1.charAt(s1-2)))
2491 (Character.isLowSurrogate((char)c2) && 0!=(s2-1) && Character.isHighSurrogate(cs2.charAt(s2-2)))
H A DScientificNumberFormatter.java288 if (UCharacter.isHighSurrogate(c1)) {
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/external/com/google/gdata/util/common/base/
H A DUnicodeEscaper.java390 } else if (Character.isHighSurrogate(c)) {
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DNormalizer2Impl.java980 if(prevSrc<src && Character.isHighSurrogate(c2=s.charAt(src-1))) {
1096 if(prevSrc<src && Character.isHighSurrogate(c2=s.charAt(src-1))) {
1119 Character.isHighSurrogate(s.charAt(prevBoundary-1))
1335 if(prevSrc<src && Character.isHighSurrogate(c2=s.charAt(src-1))) {
1351 Character.isHighSurrogate(s.charAt(prevBoundary-1))
1457 if(prevSrc<src && Character.isHighSurrogate(c2=s.charAt(src-1))) {
1491 Character.isHighSurrogate(s.charAt(p-1))
H A DUnicodeSetStringSpan.java966 && !(0 < start && Character.isHighSurrogate(s.charAt(start - 1)) &&
968 && !((start + tlength) < limit && Character.isHighSurrogate(s.charAt(start + tlength - 1)) &&
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DNormalizer2Impl.java976 if(prevSrc<src && Character.isHighSurrogate(c2=s.charAt(src-1))) {
1092 if(prevSrc<src && Character.isHighSurrogate(c2=s.charAt(src-1))) {
1115 Character.isHighSurrogate(s.charAt(prevBoundary-1))
1331 if(prevSrc<src && Character.isHighSurrogate(c2=s.charAt(src-1))) {
1347 Character.isHighSurrogate(s.charAt(prevBoundary-1))
1453 if(prevSrc<src && Character.isHighSurrogate(c2=s.charAt(src-1))) {
1487 Character.isHighSurrogate(s.charAt(p-1))
H A DUnicodeSetStringSpan.java962 && !(0 < start && Character.isHighSurrogate(s.charAt(start - 1)) &&
964 && !((start + tlength) < limit && Character.isHighSurrogate(s.charAt(start + tlength - 1)) &&
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
H A DCollationElementIterator.java470 (Character.isHighSurrogate(c) && !rbc_.isUnsafe(string_.codePointAt(offset)))) {
H A DStringSearch.java598 if (!Character.isHighSurrogate(ch)) {
1254 if (Character.isHighSurrogate(codeUnit)) {
1271 if (Character.isHighSurrogate(prevUnit)) {

Completed in 515 milliseconds

12