OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:charNum
(Results
1 - 3
of
3
) sorted by null
/external/expat/lib/
xmltok.c
1230
XmlUtf16Encode(int
charNum
, unsigned short *buf)
1232
if (
charNum
< 0)
1234
if (
charNum
< 0x10000) {
1235
buf[0] = (unsigned short)
charNum
;
1238
if (
charNum
< 0x110000) {
1239
charNum
-= 0x10000;
1240
buf[0] = (unsigned short)((
charNum
>> 10) + 0xD800);
1241
buf[1] = (unsigned short)((
charNum
& 0x3FF) + 0xDC00);
[
all
...]
/packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
CandidateView.java
431
int
charNum
= 0;
449
charNum
+= itemStr.length();
456
mDecInfo.mCnToPage.add(mDecInfo.mCnToPage.get(p) +
charNum
);
/prebuilts/misc/common/groovy/
groovy-all-1.7.0.jar
Completed in 47 milliseconds