Searched refs:char32At (Results 1 - 25 of 141) sorted by relevance

123456

/external/chromium_org/third_party/icu/source/common/
H A Dunifilt.cpp46 contains(c = text.char32At(offset))) {
51 contains(c = text.char32At(offset))) {
57 offset -= U16_LENGTH(text.char32At(offset)) - 1;
H A Druleiter.cpp137 return buf->char32At(bufPos);
140 return (i < text.length()) ? text.char32At(i) : (UChar32)DONE;
H A Dutil_props.cpp148 UChar32 ch = str.char32At(p);
193 UChar32 ch = text.char32At(p);
/external/icu/icu4c/source/common/
H A Dunifilt.cpp46 contains(c = text.char32At(offset))) {
51 contains(c = text.char32At(offset))) {
57 offset -= U16_LENGTH(text.char32At(offset)) - 1;
H A Druleiter.cpp137 return buf->char32At(bufPos);
140 return (i < text.length()) ? text.char32At(i) : (UChar32)DONE;
H A Dutil_props.cpp148 UChar32 ch = str.char32At(p);
193 UChar32 ch = text.char32At(p);
/external/chromium_org/third_party/icu/source/common/unicode/
H A Durep.h67 * charAt() vs. char32At().
80 * charAt() vs. char32At().
87 UChar32 (*char32At)(const UReplaceable* rep, member in struct:UReplaceableCallbacks
H A Drep.h33 * 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 { function in class:Replaceable
/external/icu/icu4c/source/common/unicode/
H A Durep.h67 * charAt() vs. char32At().
80 * charAt() vs. char32At().
87 UChar32 (*char32At)(const UReplaceable* rep, member in struct:UReplaceableCallbacks
H A Drep.h33 * 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 { function in class:Replaceable
/external/chromium_org/third_party/icu/source/i18n/
H A Dcasetrn.cpp58 c=rep->char32At(csc->index-1);
69 c=rep->char32At(csc->index);
156 c=text.char32At(textPos);
H A Dstrrepl.cpp146 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);
H A Dbrktrans.cpp101 UChar32 cp = sText.char32At(boundary-1);
106 cp = sText.char32At(boundary);
H A Dnortrans.cpp137 UChar32 c = text.char32At(start);
146 } while(start < limit && !fNorm2.hasBoundaryBefore(c = text.char32At(start)));
H A Dtitletrn.cpp97 c = text.char32At(start);
123 c=text.char32At(textPos);
/external/icu/icu4c/source/i18n/
H A Dcasetrn.cpp58 c=rep->char32At(csc->index-1);
69 c=rep->char32At(csc->index);
156 c=text.char32At(textPos);
H A Dstrrepl.cpp146 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);
H A Dbrktrans.cpp101 UChar32 cp = sText.char32At(boundary-1);
106 cp = sText.char32At(boundary);
H A Dnortrans.cpp137 UChar32 c = text.char32At(start);
146 } while(start < limit && !fNorm2.hasBoundaryBefore(c = text.char32At(start)));
H A Dtitletrn.cpp97 c = text.char32At(start);
123 c=text.char32At(textPos);
H A Ddecimfmt.cpp1339 } else if(0x0030 != getConstSymbol(DecimalFormatSymbols::kZeroDigitSymbol).char32At(0)) {
1340 debug("No format fastpath: 0x0030 != getConstSymbol(DecimalFormatSymbols::kZeroDigitSymbol).char32At(0)");
1813 localizedDigits[0] = getConstSymbol(DecimalFormatSymbols::kZeroDigitSymbol).char32At(0);
1814 localizedDigits[1] = getConstSymbol(DecimalFormatSymbols::kOneDigitSymbol).char32At(0);
1815 localizedDigits[2] = getConstSymbol(DecimalFormatSymbols::kTwoDigitSymbol).char32At(0);
1816 localizedDigits[3] = getConstSymbol(DecimalFormatSymbols::kThreeDigitSymbol).char32At(0);
1817 localizedDigits[4] = getConstSymbol(DecimalFormatSymbols::kFourDigitSymbol).char32At(0);
1818 localizedDigits[5] = getConstSymbol(DecimalFormatSymbols::kFiveDigitSymbol).char32At(0);
1819 localizedDigits[6] = getConstSymbol(DecimalFormatSymbols::kSixDigitSymbol).char32At(0);
1820 localizedDigits[7] = getConstSymbol(DecimalFormatSymbols::kSevenDigitSymbol).char32At(
[all...]
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dcitrtest.cpp64 virtual UChar32 next32PostInc(void){return text.char32At(pos++);}
188 if(test->first32PostInc()!= testText2.char32At(0)){
571 if(c != text.char32At(1) || i!=1)
572 errln("move32(1, kStart) didn't work correctly expected %X got %X", c, text.char32At(1) );
576 if(c != text.char32At(4) || i!=4)
577 errln("move32(2, kCurrent) didn't work correctly expected %X got %X i=%ld", c, text.char32At(4), i);
581 if(c != text.char32At(1) || i!=1)
582 errln("move32(-2, kCurrent) didn't work correctly expected %X got %X i=%d", c, text.char32At(1), i);
587 if(c != text.char32At((text.length()-3)) || i!=(text.length()-3))
588 errln("move32(-2, kEnd) didn't work correctly expected %X got %X i=%d", c, text.char32At((tex
[all...]
H A Dtestutil.cpp45 c = s.char32At(i);
/external/icu/icu4c/source/test/intltest/
H A Dcitrtest.cpp64 virtual UChar32 next32PostInc(void){return text.char32At(pos++);}
188 if(test->first32PostInc()!= testText2.char32At(0)){
571 if(c != text.char32At(1) || i!=1)
572 errln("move32(1, kStart) didn't work correctly expected %X got %X", c, text.char32At(1) );
576 if(c != text.char32At(4) || i!=4)
577 errln("move32(2, kCurrent) didn't work correctly expected %X got %X i=%ld", c, text.char32At(4), i);
581 if(c != text.char32At(1) || i!=1)
582 errln("move32(-2, kCurrent) didn't work correctly expected %X got %X i=%d", c, text.char32At(1), i);
587 if(c != text.char32At((text.length()-3)) || i!=(text.length()-3))
588 errln("move32(-2, kEnd) didn't work correctly expected %X got %X i=%d", c, text.char32At((tex
[all...]
H A Dtestutil.cpp45 c = s.char32At(i);

Completed in 4642 milliseconds

123456