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

1 2

  /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();
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();
UCharacterIterator.java 212 public int nextCodePoint() {
382 while (delta > 0 && nextCodePoint() != DONE) {
  /external/icu/icu4c/source/i18n/
uitercollationiterator.cpp 61 UIterCollationIterator::nextCodePoint(UErrorCode & /*errorCode*/) {
162 FCDUIterCollationIterator::nextCodePoint(UErrorCode &errorCode) {
261 while(num > 0 && FCDUIterCollationIterator::nextCodePoint(errorCode) >= 0) {
utf16collationiterator.cpp 88 UTF16CollationIterator::nextCodePoint(UErrorCode & /*errorCode*/) {
251 FCDUTF16CollationIterator::nextCodePoint(UErrorCode &errorCode) {
329 while(num > 0 && FCDUTF16CollationIterator::nextCodePoint(errorCode) >= 0) {
utf8collationiterator.cpp 95 UTF8CollationIterator::nextCodePoint(UErrorCode & /*errorCode*/) {
265 FCDUTF8CollationIterator::nextCodePoint(UErrorCode &errorCode) {
344 while(num > 0 && FCDUTF8CollationIterator::nextCodePoint(errorCode) >= 0) {
collationdatabuilder.cpp 137 virtual UChar32 nextCodePoint(UErrorCode &errorCode);
222 DataBuilderCollationIterator::nextCodePoint(UErrorCode & /*errorCode*/) {
    [all...]
rulebasedcollator.cpp 790 UChar32 nextCodePoint() {
804 * @param c the last code point returned by nextCodePoint() or nextDecomposedCodePoint()
904 return u8ci.nextCodePoint(errorCode);
928 return uici.nextCodePoint(errorCode);
938 UChar32 leftCp = left.nextCodePoint();
939 UChar32 rightCp = right.nextCodePoint();
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
IterCollationIterator.java 43 public int nextCodePoint() {
44 return iter.nextCodePoint();
UTF16CollationIterator.java 73 public int 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();
FCDUTF16CollationIterator.java 103 public int nextCodePoint() {
206 while(num > 0 && nextCodePoint() >= 0) {
CollationIterator.java 369 public abstract int nextCodePoint();
407 int c = nextCodePoint();
522 nextCp = nextCodePoint();
694 int c = nextCodePoint();
    [all...]
CollationDataBuilder.java     [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
IterCollationIterator.java 41 public int nextCodePoint() {
42 return iter.nextCodePoint();
UTF16CollationIterator.java 71 public int 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();
FCDUTF16CollationIterator.java 101 public int nextCodePoint() {
204 while(num > 0 && nextCodePoint() >= 0) {
CollationIterator.java 367 public abstract int nextCodePoint();
405 int c = nextCodePoint();
520 nextCp = nextCodePoint();
692 int c = nextCodePoint();
    [all...]
  /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);
  /external/guava/guava-tests/benchmark/com/google/common/base/
CharMatcherBenchmark.java 112 int cp = sampler.nextCodePoint();
166 public int nextCodePoint() {
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/lang/
UnicodeSetStringSpanTest.java 692 static int nextCodePoint(int c) {
719 for (first = c = 0;; c = nextCodePoint(c)) {
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
UnicodeSetStringSpanTest.java 689 static int nextCodePoint(int c) {
716 for (first = c = 0;; c = nextCodePoint(c)) {
    [all...]

Completed in 235 milliseconds

1 2