HomeSort by relevance Sort by last modified time
    Searched refs:nextCodePoint (Results 1 - 25 of 73) sorted by null

1 2 3

  /external/icu/android_icu4j/src/main/java/android/icu/text/
UForwardCharacterIterator.java 38 * It provides nextCodePoint() to access a code point and advance an internal
41 * <p>nextCodePoint() assumes that the current position is that of
43 * After nextCodePoint(), this will be true again.
47 * is returned even by nextCodePoint().
88 public int nextCodePoint();
BytesDictionaryMatcher.java 49 int c = text.nextCodePoint();
77 c = text.nextCodePoint();
CharsDictionaryMatcher.java 28 int c = text.nextCodePoint();
56 c = text.nextCodePoint();
UCharacterIterator.java 197 public int nextCodePoint() {
355 while (delta > 0 && nextCodePoint() != DONE) {
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
UForwardCharacterIterator.java 37 * It provides nextCodePoint() to access a code point and advance an internal
40 * <p>nextCodePoint() assumes that the current position is that of
42 * After nextCodePoint(), this will be true again.
46 * is returned even by nextCodePoint().
90 public int nextCodePoint();
CharsDictionaryMatcher.java 27 int c = text.nextCodePoint();
55 c = text.nextCodePoint();
BytesDictionaryMatcher.java 48 int c = text.nextCodePoint();
76 c = text.nextCodePoint();
UCharacterIterator.java 212 public int nextCodePoint() {
382 while (delta > 0 && nextCodePoint() != DONE) {
  /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
IterCollationIterator.java 43 public int nextCodePoint() {
44 return iter.nextCodePoint();
FCDIterCollationIterator.java 54 public int nextCodePoint() {
82 c = iter.nextCodePoint();
209 while(num > 0 && nextCodePoint() >= 0) {
271 int c = iter.nextCodePoint();
284 c = iter.nextCodePoint();
366 iter.nextCodePoint();
378 iter.nextCodePoint();
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
IterCollationIterator.java 41 public int nextCodePoint() {
42 return iter.nextCodePoint();
FCDIterCollationIterator.java 52 public int nextCodePoint() {
80 c = iter.nextCodePoint();
207 while(num > 0 && nextCodePoint() >= 0) {
269 int c = iter.nextCodePoint();
282 c = iter.nextCodePoint();
364 iter.nextCodePoint();
376 iter.nextCodePoint();
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/normalizer/
UnicodeNormalizer.java 107 ch = UTF16Util.nextCodePoint(source, i);
116 ch = UTF16Util.nextCodePoint(buffer, j);
144 int starterCh = UTF16Util.nextCodePoint(target,0);
152 int ch = UTF16Util.nextCodePoint(target, decompPos);
NormalizerData.java 70 ch = UTF16Util.nextCodePoint(decomp, i);
NormalizerBuilder.java 202 int second = UTF16Util.nextCodePoint(decomp, 0);
205 second = UTF16Util.nextCodePoint(decomp,
425 int second = UTF16Util.nextCodePoint(decomp, 0);
428 second = UTF16Util.nextCodePoint(decomp,
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
UnicodeNormalizer.java 104 ch = UTF16Util.nextCodePoint(source, i);
113 ch = UTF16Util.nextCodePoint(buffer, j);
141 int starterCh = UTF16Util.nextCodePoint(target,0);
149 int ch = UTF16Util.nextCodePoint(target, decompPos);
NormalizerData.java 67 ch = UTF16Util.nextCodePoint(decomp, i);
NormalizerBuilder.java 201 int second = UTF16Util.nextCodePoint(decomp, 0);
204 second = UTF16Util.nextCodePoint(decomp,
424 int second = UTF16Util.nextCodePoint(decomp, 0);
427 second = UTF16Util.nextCodePoint(decomp,
  /external/icu/icu4c/source/i18n/
uitercollationiterator.h 46 virtual UChar32 nextCodePoint(UErrorCode &errorCode);
78 virtual UChar32 nextCodePoint(UErrorCode &errorCode);
utf8collationiterator.h 47 virtual UChar32 nextCodePoint(UErrorCode &errorCode);
94 virtual UChar32 nextCodePoint(UErrorCode &errorCode);
utf16collationiterator.h 57 virtual UChar32 nextCodePoint(UErrorCode &errorCode);
104 virtual UChar32 nextCodePoint(UErrorCode &errorCode);
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/stringprep/
NamePrepTransform.java 118 while((ch=iter.nextCodePoint())!=UCharacterIterator.DONE){
138 while((ch=iter.nextCodePoint())!= UCharacterIterator.DONE){
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/stringprep/
NamePrepTransform.java 115 while((ch=iter.nextCodePoint())!=UCharacterIterator.DONE){
135 while((ch=iter.nextCodePoint())!= UCharacterIterator.DONE){
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/
UTF16Util.java 27 * Method nextCodePoint. Returns the next code point
33 public static final int nextCodePoint(String s, int i) {
63 * Method nextCodePoint. Returns the next code point
69 public static final int nextCodePoint(StringBuffer s, int i) {
147 int cp = nextCodePoint(buffer, i);
  /external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/
UTF16Util.java 23 * Method nextCodePoint. Returns the next code point
29 public static final int nextCodePoint(String s, int i) {
59 * Method nextCodePoint. Returns the next code point
65 public static final int nextCodePoint(StringBuffer s, int i) {
143 int cp = nextCodePoint(buffer, i);

Completed in 2176 milliseconds

1 2 3