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

1 2 3 4 5

  /external/chromium/third_party/icu/source/common/
unifilt.cpp 45 contains(c = text.char32At(offset))) {
50 contains(c = text.char32At(offset))) {
56 offset -= UTF_CHAR_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 137 * !uprv_isRuleWhiteSpace(str.char32At(pos)). On
144 // assert(!uprv_isRuleWhiteSpace(str.char32At(pos)));
148 UChar32 ch = str.char32At(p);
193 UChar32 ch = text.char32At(p);
util.cpp 136 UChar32 c = str.char32At(p);
176 //? uprv_isRuleWhiteSpace(c = text.char32At(pos))) {
242 UChar32 cpat = pat.char32At(ipat);
245 UChar32 c = text.char32At(index);
275 cpat = pat.char32At(ipat);
  /external/icu4c/common/
unifilt.cpp 45 contains(c = text.char32At(offset))) {
50 contains(c = text.char32At(offset))) {
56 offset -= UTF_CHAR_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 137 * !uprv_isRuleWhiteSpace(str.char32At(pos)). On
144 // assert(!uprv_isRuleWhiteSpace(str.char32At(pos)));
148 UChar32 ch = str.char32At(p);
193 UChar32 ch = text.char32At(p);
util.cpp 136 UChar32 c = str.char32At(p);
176 //? uprv_isRuleWhiteSpace(c = text.char32At(pos))) {
242 UChar32 cpat = pat.char32At(ipat);
245 UChar32 c = text.char32At(index);
275 cpat = pat.char32At(ipat);
  /external/chromium/third_party/icu/public/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().
251 Replaceable::char32At(int32_t offset) const {
urep.h 67 * charAt() vs. char32At().
80 * charAt() vs. char32At().
87 UChar32 (*char32At)(const UReplaceable* rep,
  /external/icu4c/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().
251 Replaceable::char32At(int32_t offset) const {
urep.h 67 * charAt() vs. char32At().
80 * charAt() vs. char32At().
87 UChar32 (*char32At)(const UReplaceable* rep,
  /external/chromium/third_party/icu/source/i18n/
strrepl.cpp 147 int32_t len = UTF_CHAR_LENGTH(text.char32At(start-1));
162 UChar32 c = output.char32At(oOutput);
213 newStart -= UTF_CHAR_LENGTH(text.char32At(newStart-1));
222 newStart += UTF_CHAR_LENGTH(text.char32At(newStart));
298 ch = output.char32At(i);
315 UChar32 c = output.char32At(i);
casetrn.cpp 56 c=rep->char32At(csc->index-1);
67 c=rep->char32At(csc->index);
157 c=text.char32At(textPos);
brktrans.cpp 101 UChar32 cp = sText.char32At(boundary-1);
106 cp = sText.char32At(boundary);
titletrn.cpp 96 c = text.char32At(start);
122 c=text.char32At(textPos);
rbt_rule.cpp 224 UChar32 c = pattern.char32At(anteContextLength);
318 pos - UTF_CHAR_LENGTH(str.char32At(pos-1)) :
324 pos + UTF_CHAR_LENGTH(str.char32At(pos)) :
533 UChar32 ch = pattern.char32At(i);
  /external/icu4c/i18n/
strrepl.cpp 147 int32_t len = UTF_CHAR_LENGTH(text.char32At(start-1));
162 UChar32 c = output.char32At(oOutput);
213 newStart -= UTF_CHAR_LENGTH(text.char32At(newStart-1));
222 newStart += UTF_CHAR_LENGTH(text.char32At(newStart));
298 ch = output.char32At(i);
315 UChar32 c = output.char32At(i);
casetrn.cpp 56 c=rep->char32At(csc->index-1);
67 c=rep->char32At(csc->index);
157 c=text.char32At(textPos);
brktrans.cpp 101 UChar32 cp = sText.char32At(boundary-1);
106 cp = sText.char32At(boundary);
nortrans.cpp 136 UChar32 c = text.char32At(start);
145 } while(start < limit && !fNorm2.hasBoundaryBefore(c = text.char32At(start)));
titletrn.cpp 96 c = text.char32At(start);
122 c=text.char32At(textPos);
  /external/chromium/third_party/icu/source/test/intltest/
citrtest.cpp 61 virtual UChar32 next32PostInc(void){return text.char32At(pos++);}
185 if(test->first32PostInc()!= testText2.char32At(0)){
568 if(c != text.char32At(1) || i!=1)
569 errln("move32(1, kStart) didn't work correctly expected %X got %X", c, text.char32At(1) );
573 if(c != text.char32At(4) || i!=4)
574 errln("move32(2, kCurrent) didn't work correctly expected %X got %X i=%ld", c, text.char32At(4), i);
578 if(c != text.char32At(1) || i!=1)
579 errln("move32(-2, kCurrent) didn't work correctly expected %X got %X i=%d", c, text.char32At(1), i);
584 if(c != text.char32At((text.length()-3)) || i!=(text.length()-3))
585 errln("move32(-2, kEnd) didn't work correctly expected %X got %X i=%d", c, text.char32At((text.length()-3)), i)
    [all...]
  /external/icu4c/test/intltest/
citrtest.cpp 61 virtual UChar32 next32PostInc(void){return text.char32At(pos++);}
185 if(test->first32PostInc()!= testText2.char32At(0)){
568 if(c != text.char32At(1) || i!=1)
569 errln("move32(1, kStart) didn't work correctly expected %X got %X", c, text.char32At(1) );
573 if(c != text.char32At(4) || i!=4)
574 errln("move32(2, kCurrent) didn't work correctly expected %X got %X i=%ld", c, text.char32At(4), i);
578 if(c != text.char32At(1) || i!=1)
579 errln("move32(-2, kCurrent) didn't work correctly expected %X got %X i=%d", c, text.char32At(1), i);
584 if(c != text.char32At((text.length()-3)) || i!=(text.length()-3))
585 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);

Completed in 4049 milliseconds

1 2 3 4 5