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

1 2 3 4 5

  /external/icu/android_icu4j/src/main/java/android/icu/text/
UnicodeFilter.java 34 contains(c = text.char32At(offset[0]))) {
38 if (offset[0] > limit && contains(text.char32At(offset[0]))) {
44 offset[0] -= UTF16.getCharCount(text.char32At(offset[0])) - 1;
Replaceable.java 15 * other than the Unicode characters returned by char32At(). One
32 * <code>char32At()</code>, and <code>extractBetween()</code>.
83 int char32At(int offset);
ReplaceableContextIterator.java 122 c=rep.char32At(cpLimit);
177 c=rep.char32At(index);
185 c=rep.char32At(index-1);
ReplaceableString.java 97 public int char32At(int offset) {
StringReplacer.java 156 int len = UTF16.getCharCount(text.char32At(start-1));
184 tempExtra = UTF16.getCharCount(text.char32At(limit));
238 newStart -= UTF16.getCharCount(text.char32At(newStart-1));
247 newStart += UTF16.getCharCount(text.char32At(newStart));
NormalizationTransliterator.java 97 int c = text.char32At(start);
106 } while(start < limit && !norm2.hasBoundaryBefore(c = text.char32At(start)));
TransliterationRuleSet.java 192 int indexByte = text.char32At(pos.start) & 0xFF;
217 pos.start += UTF16.getCharCount(text.char32At(pos.start));
UnescapeTransliterator.java 196 int ch = text.char32At(s);
245 start += UTF16.getCharCount(text.char32At(start));
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
UnicodeFilter.java 40 contains(c = text.char32At(offset[0]))) {
44 if (offset[0] > limit && contains(text.char32At(offset[0]))) {
50 offset[0] -= UTF16.getCharCount(text.char32At(offset[0])) - 1;
Replaceable.java 14 * other than the Unicode characters returned by char32At(). One
31 * <code>char32At()</code>, and <code>extractBetween()</code>.
86 int char32At(int offset);
ReplaceableContextIterator.java 121 c=rep.char32At(cpLimit);
176 c=rep.char32At(index);
184 c=rep.char32At(index-1);
ReplaceableString.java 104 public int char32At(int offset) {
  /external/icu/icu4c/source/common/
unifilt.cpp 46 contains(c = text.char32At(offset))) {
51 contains(c = text.char32At(offset))) {
57 offset -= U16_LENGTH(text.char32At(offset)) - 1;
ruleiter.cpp 137 return buf->char32At(bufPos);
140 return (i < text.length()) ? text.char32At(i) : (UChar32)DONE;
util_props.cpp 148 UChar32 ch = str.char32At(p);
193 UChar32 ch = text.char32At(p);
  /external/icu/icu4c/source/common/unicode/
rep.h 33 * other than the Unicode characters returned by char32At(). One
50 * <code>char32At()</code>, and <code>extractBetween()</code>.
108 inline UChar32 char32At(int32_t offset) const;
234 * Virtual version of char32At().
253 Replaceable::char32At(int32_t offset) const {
urep.h 67 * charAt() vs. char32At().
80 * charAt() vs. char32At().
87 UChar32 (*char32At)(const UReplaceable* rep,
  /external/icu/icu4c/source/i18n/
casetrn.cpp 58 c=rep->char32At(csc->index-1);
69 c=rep->char32At(csc->index);
156 c=text.char32At(textPos);
strrepl.cpp 146 int32_t len = U16_LENGTH(text.char32At(start-1));
161 UChar32 c = output.char32At(oOutput);
212 newStart -= U16_LENGTH(text.char32At(newStart-1));
221 newStart += U16_LENGTH(text.char32At(newStart));
297 ch = output.char32At(i);
314 UChar32 c = output.char32At(i);
digitformatter.cpp 44 fLocalizedDigits[0] = symbols.getConstSymbol(DecimalFormatSymbols::kZeroDigitSymbol).char32At(0);
45 fLocalizedDigits[1] = symbols.getConstSymbol(DecimalFormatSymbols::kOneDigitSymbol).char32At(0);
46 fLocalizedDigits[2] = symbols.getConstSymbol(DecimalFormatSymbols::kTwoDigitSymbol).char32At(0);
47 fLocalizedDigits[3] = symbols.getConstSymbol(DecimalFormatSymbols::kThreeDigitSymbol).char32At(0);
48 fLocalizedDigits[4] = symbols.getConstSymbol(DecimalFormatSymbols::kFourDigitSymbol).char32At(0);
49 fLocalizedDigits[5] = symbols.getConstSymbol(DecimalFormatSymbols::kFiveDigitSymbol).char32At(0);
50 fLocalizedDigits[6] = symbols.getConstSymbol(DecimalFormatSymbols::kSixDigitSymbol).char32At(0);
51 fLocalizedDigits[7] = symbols.getConstSymbol(DecimalFormatSymbols::kSevenDigitSymbol).char32At(0);
52 fLocalizedDigits[8] = symbols.getConstSymbol(DecimalFormatSymbols::kEightDigitSymbol).char32At(0);
53 fLocalizedDigits[9] = symbols.getConstSymbol(DecimalFormatSymbols::kNineDigitSymbol).char32At(0)
    [all...]
nortrans.cpp 137 UChar32 c = text.char32At(start);
146 } while(start < limit && !fNorm2.hasBoundaryBefore(c = text.char32At(start)));
titletrn.cpp 97 c = text.char32At(start);
123 c=text.char32At(textPos);
  /external/icu/icu4c/source/test/intltest/
citrtest.cpp 65 virtual UChar32 next32PostInc(void){return text.char32At(pos++);}
187 if(test->first32PostInc()!= testText2.char32At(0)){
570 if(c != text.char32At(1) || i!=1)
571 errln("move32(1, kStart) didn't work correctly expected %X got %X", c, text.char32At(1) );
575 if(c != text.char32At(4) || i!=4)
576 errln("move32(2, kCurrent) didn't work correctly expected %X got %X i=%ld", c, text.char32At(4), i);
580 if(c != text.char32At(1) || i!=1)
581 errln("move32(-2, kCurrent) didn't work correctly expected %X got %X i=%d", c, text.char32At(1), i);
586 if(c != text.char32At((text.length()-3)) || i!=(text.length()-3))
587 errln("move32(-2, kEnd) didn't work correctly expected %X got %X i=%d", c, text.char32At((text.length()-3)), i)
    [all...]
testutil.cpp 45 c = s.char32At(i);
  /external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
StringReplacer.java 155 int len = UTF16.getCharCount(text.char32At(start-1));
183 tempExtra = UTF16.getCharCount(text.char32At(limit));
237 newStart -= UTF16.getCharCount(text.char32At(newStart-1));
246 newStart += UTF16.getCharCount(text.char32At(newStart));

Completed in 789 milliseconds

1 2 3 4 5