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

1 2 3 4 5 6

  /external/icu/android_icu4j/src/main/java/android/icu/text/
UnicodeFilter.java 38 contains(c = text.char32At(offset[0]))) {
42 if (offset[0] > limit && contains(text.char32At(offset[0]))) {
48 offset[0] -= UTF16.getCharCount(text.char32At(offset[0])) - 1;
Replaceable.java 17 * other than the Unicode characters returned by char32At(). One
34 * <code>char32At()</code>, and <code>extractBetween()</code>.
83 int char32At(int offset);
ReplaceableContextIterator.java 124 c=rep.char32At(cpLimit);
179 c=rep.char32At(index);
187 c=rep.char32At(index-1);
ReplaceableString.java 101 public int char32At(int offset) {
StringReplacer.java 159 int len = UTF16.getCharCount(text.char32At(start-1));
187 tempExtra = UTF16.getCharCount(text.char32At(limit));
241 newStart -= UTF16.getCharCount(text.char32At(newStart-1));
250 newStart += UTF16.getCharCount(text.char32At(newStart));
NormalizationTransliterator.java 106 int c = text.char32At(start);
115 } while(start < limit && !norm2.hasBoundaryBefore(c = text.char32At(start)));
TransliterationRuleSet.java 194 int indexByte = text.char32At(pos.start) & 0xFF;
219 pos.start += UTF16.getCharCount(text.char32At(pos.start));
UnescapeTransliterator.java 206 int ch = text.char32At(s);
255 start += UTF16.getCharCount(text.char32At(start));
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
UnicodeFilter.java 44 contains(c = text.char32At(offset[0]))) {
48 if (offset[0] > limit && contains(text.char32At(offset[0]))) {
54 offset[0] -= UTF16.getCharCount(text.char32At(offset[0])) - 1;
Replaceable.java 16 * other than the Unicode characters returned by char32At(). One
33 * <code>char32At()</code>, and <code>extractBetween()</code>.
86 int char32At(int offset);
ReplaceableContextIterator.java 123 c=rep.char32At(cpLimit);
178 c=rep.char32At(index);
186 c=rep.char32At(index-1);
ReplaceableString.java 108 public int char32At(int offset) {
  /external/icu/icu4c/source/common/
unifilt.cpp 48 contains(c = text.char32At(offset))) {
53 contains(c = text.char32At(offset))) {
59 offset -= U16_LENGTH(text.char32At(offset)) - 1;
ruleiter.cpp 139 return buf->char32At(bufPos);
142 return (i < text.length()) ? text.char32At(i) : (UChar32)DONE;
util_props.cpp 151 UChar32 ch = str.char32At(p);
196 UChar32 ch = text.char32At(p);
  /external/icu/icu4c/source/common/unicode/
rep.h 35 * other than the Unicode characters returned by char32At(). One
52 * <code>char32At()</code>, and <code>extractBetween()</code>.
110 inline UChar32 char32At(int32_t offset) const;
236 * Virtual version of char32At().
255 Replaceable::char32At(int32_t offset) const {
urep.h 69 * charAt() vs. char32At().
82 * charAt() vs. char32At().
89 UChar32 (*char32At)(const UReplaceable* rep,
  /external/icu/icu4c/source/i18n/
casetrn.cpp 60 c=rep->char32At(csc->index-1);
71 c=rep->char32At(csc->index);
156 c=text.char32At(textPos);
strrepl.cpp 148 int32_t len = U16_LENGTH(text.char32At(start-1));
163 UChar32 c = output.char32At(oOutput);
214 newStart -= U16_LENGTH(text.char32At(newStart-1));
223 newStart += U16_LENGTH(text.char32At(newStart));
299 ch = output.char32At(i);
316 UChar32 c = output.char32At(i);
digitformatter.cpp 46 fLocalizedDigits[0] = symbols.getConstSymbol(DecimalFormatSymbols::kZeroDigitSymbol).char32At(0);
47 fLocalizedDigits[1] = symbols.getConstSymbol(DecimalFormatSymbols::kOneDigitSymbol).char32At(0);
48 fLocalizedDigits[2] = symbols.getConstSymbol(DecimalFormatSymbols::kTwoDigitSymbol).char32At(0);
49 fLocalizedDigits[3] = symbols.getConstSymbol(DecimalFormatSymbols::kThreeDigitSymbol).char32At(0);
50 fLocalizedDigits[4] = symbols.getConstSymbol(DecimalFormatSymbols::kFourDigitSymbol).char32At(0);
51 fLocalizedDigits[5] = symbols.getConstSymbol(DecimalFormatSymbols::kFiveDigitSymbol).char32At(0);
52 fLocalizedDigits[6] = symbols.getConstSymbol(DecimalFormatSymbols::kSixDigitSymbol).char32At(0);
53 fLocalizedDigits[7] = symbols.getConstSymbol(DecimalFormatSymbols::kSevenDigitSymbol).char32At(0);
54 fLocalizedDigits[8] = symbols.getConstSymbol(DecimalFormatSymbols::kEightDigitSymbol).char32At(0);
55 fLocalizedDigits[9] = symbols.getConstSymbol(DecimalFormatSymbols::kNineDigitSymbol).char32At(0)
    [all...]
nortrans.cpp 139 UChar32 c = text.char32At(start);
148 } while(start < limit && !fNorm2.hasBoundaryBefore(c = text.char32At(start)));
titletrn.cpp 99 c = text.char32At(start);
125 c=text.char32At(textPos);
brktrans.cpp 109 UChar32 cp = sText.char32At(boundary-1);
114 cp = sText.char32At(boundary);
  /external/icu/icu4c/source/test/intltest/
citrtest.cpp 67 virtual UChar32 next32PostInc(void){return text.char32At(pos++);}
189 if(test->first32PostInc()!= testText2.char32At(0)){
572 if(c != text.char32At(1) || i!=1)
573 errln("move32(1, kStart) didn't work correctly expected %X got %X", c, text.char32At(1) );
577 if(c != text.char32At(4) || i!=4)
578 errln("move32(2, kCurrent) didn't work correctly expected %X got %X i=%ld", c, text.char32At(4), i);
582 if(c != text.char32At(1) || i!=1)
583 errln("move32(-2, kCurrent) didn't work correctly expected %X got %X i=%d", c, text.char32At(1), i);
588 if(c != text.char32At((text.length()-3)) || i!=(text.length()-3))
589 errln("move32(-2, kEnd) didn't work correctly expected %X got %X i=%d", c, text.char32At((text.length()-3)), i)
    [all...]
  /external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
StringReplacer.java 158 int len = UTF16.getCharCount(text.char32At(start-1));
186 tempExtra = UTF16.getCharCount(text.char32At(limit));
240 newStart -= UTF16.getCharCount(text.char32At(newStart-1));
249 newStart += UTF16.getCharCount(text.char32At(newStart));

Completed in 617 milliseconds

1 2 3 4 5 6