OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:char32at
(Results
1 - 25
of
66
) sorted by null
1
2
3
/external/icu4c/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.cpp
172
//? PatternProps::isWhiteSpace(c = text.
char32At
(pos))) {
238
UChar32 cpat = pat.
char32At
(ipat);
241
UChar32 c = text.
char32At
(index);
271
cpat = pat.
char32At
(ipat);
util_props.cpp
148
UChar32 ch = str.
char32At
(p);
193
UChar32 ch = text.
char32At
(p);
caniter.cpp
211
i = U16_LENGTH(source.
char32At
(0));
219
cp = source.
char32At
(i);
295
cp = source.
char32At
(i);
normlzr.cpp
250
return buffer.
char32At
(bufferPos);
263
UChar32 c=buffer.
char32At
(bufferPos);
278
UChar32 c=buffer.
char32At
(bufferPos-1);
/external/icu4c/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);
titletrn.cpp
97
c = text.
char32At
(start);
123
c=text.
char32At
(textPos);
name2uni.cpp
142
c = text.
char32At
(cursor);
154
continue; // *** reprocess
char32At
(cursor)
218
continue; // *** reprocess
char32At
(cursor)
strmatch.cpp
194
UChar32 c = pattern.
char32At
(0);
205
ch = pattern.
char32At
(i);
281
UChar32 c = pattern.
char32At
(i);
uni2name.cpp
97
UChar32 c = text.
char32At
(cursor);
brktrans.cpp
101
UChar32 cp = sText.
char32At
(boundary-1);
106
cp = sText.
char32At
(boundary);
nortrans.cpp
137
UChar32 c = text.
char32At
(start);
146
} while(start < limit && !fNorm2.hasBoundaryBefore(c = text.
char32At
(start)));
decimfmt.cpp
[
all
...]
unesctrn.cpp
228
UChar32 ch = text.
char32At
(s);
277
start += U16_LENGTH(text.
char32At
(start));
rbt_set.cpp
93
UChar32 ch = source.
char32At
(i);
405
int16_t indexByte = (int16_t) (text.
char32At
(pos.start) & 0xFF);
420
pos.start += U16_LENGTH(text.
char32At
(pos.start));
anytrans.cpp
138
ch = text.
char32At
(start - 1); // look back
150
ch = text.
char32At
(limit); // look ahead
esctrn.cpp
143
int32_t c = grokSupplementals ? text.
char32At
(start) : text.charAt(start);
rbt_rule.cpp
225
UChar32 c = pattern.
char32At
(anteContextLength);
319
pos - U16_LENGTH(str.
char32At
(pos-1)) :
325
pos + U16_LENGTH(str.
char32At
(pos)) :
534
UChar32 ch = pattern.
char32At
(i);
/external/icu4c/test/intltest/
testutil.cpp
45
c = s.
char32At
(i);
citrtest.cpp
64
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
((text.length()-3)), i)
[
all
...]
rbbitst.cpp
374
UChar32 c = ustr.
char32At
(j);
[
all
...]
/external/icu4c/common/unicode/
urep.h
67
* charAt() vs.
char32At
().
80
* charAt() vs.
char32At
().
87
UChar32 (*
char32At
)(const UReplaceable* rep,
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 {
Completed in 3099 milliseconds
1
2
3