Searched refs:sourceChar (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/third_party/icu/source/common/
H A Ducnvisci.c898 UChar32 sourceChar = 0x0000; local
914 if ((sourceChar = args->converter->fromUChar32)!=0) {
932 sourceChar = *source++;
938 if (sourceChar <= ASCII_END) {
939 args->converter->fromUnicodeStatus = sourceChar;
940 WRITE_TO_TARGET_FROM_U(args,offsets,source,target,targetLimit,sourceChar,err);
946 switch (sourceChar) {
968 /* is the sourceChar in the INDIC_RANGE? */
969 if ((uint16_t)(INDIC_BLOCK_END-sourceChar) <= INDIC_RANGE) {
974 if (sourceChar!
1179 uint8_t sourceChar = 0x0000; local
[all...]
H A Ducnv2022.cpp1341 const uint32_t sourceChar, const uint32_t targetUniChar,
1343 if(sourceChar>0xff){
1344 cnv->toUBytes[0] = (uint8_t)(sourceChar>>8);
1345 cnv->toUBytes[1] = (uint8_t)sourceChar;
1349 cnv->toUBytes[0] =(char) sourceChar;
1646 UChar32 sourceChar; local
1664 if((sourceChar = cnv->fromUChar32)!=0 && target< targetLimit) {
1671 sourceChar = *(source++);
1673 if(U16_IS_SURROGATE(sourceChar)) {
1674 if(U16_IS_SURROGATE_LEAD(sourceChar)) {
1340 toUnicodeCallback(UConverter *cnv, const uint32_t sourceChar, const uint32_t targetUniChar, UErrorCode* err) argument
2338 UChar32 sourceChar = 0x0000; local
2898 UChar32 sourceChar; local
[all...]
H A Ducnv_ct.c337 UChar32 sourceChar; local
351 if((sourceChar = cnv->fromUChar32)!=0 && target< targetLimit) {
358 sourceChar = *(source++);
360 if(U16_IS_SURROGATE(sourceChar)) {
361 if(U16_IS_SURROGATE_LEAD(sourceChar)) {
369 sourceChar=U16_GET_SUPPLEMENTARY(sourceChar, trail);
377 cnv->fromUChar32=sourceChar;
382 cnv->fromUChar32=sourceChar;
389 cnv->fromUChar32=sourceChar;
[all...]
/external/icu/icu4c/source/common/
H A Ducnvisci.c898 UChar32 sourceChar = 0x0000; local
914 if ((sourceChar = args->converter->fromUChar32)!=0) {
932 sourceChar = *source++;
938 if (sourceChar <= ASCII_END) {
939 args->converter->fromUnicodeStatus = sourceChar;
940 WRITE_TO_TARGET_FROM_U(args,offsets,source,target,targetLimit,sourceChar,err);
946 switch (sourceChar) {
968 /* is the sourceChar in the INDIC_RANGE? */
969 if ((uint16_t)(INDIC_BLOCK_END-sourceChar) <= INDIC_RANGE) {
974 if (sourceChar!
1179 uint8_t sourceChar = 0x0000; local
[all...]
H A Ducnv2022.cpp1346 const uint32_t sourceChar, const uint32_t targetUniChar,
1348 if(sourceChar>0xff){
1349 cnv->toUBytes[0] = (uint8_t)(sourceChar>>8);
1350 cnv->toUBytes[1] = (uint8_t)sourceChar;
1354 cnv->toUBytes[0] =(char) sourceChar;
1651 UChar32 sourceChar; local
1669 if((sourceChar = cnv->fromUChar32)!=0 && target< targetLimit) {
1676 sourceChar = *(source++);
1678 if(U16_IS_SURROGATE(sourceChar)) {
1679 if(U16_IS_SURROGATE_LEAD(sourceChar)) {
1345 toUnicodeCallback(UConverter *cnv, const uint32_t sourceChar, const uint32_t targetUniChar, UErrorCode* err) argument
2343 UChar32 sourceChar = 0x0000; local
2903 UChar32 sourceChar; local
[all...]
H A Ducnv_ct.c337 UChar32 sourceChar; local
351 if((sourceChar = cnv->fromUChar32)!=0 && target< targetLimit) {
358 sourceChar = *(source++);
360 if(U16_IS_SURROGATE(sourceChar)) {
361 if(U16_IS_SURROGATE_LEAD(sourceChar)) {
369 sourceChar=U16_GET_SUPPLEMENTARY(sourceChar, trail);
377 cnv->fromUChar32=sourceChar;
382 cnv->fromUChar32=sourceChar;
389 cnv->fromUChar32=sourceChar;
[all...]
/external/icu/icu4c/source/i18n/
H A Dcollationbuilder.cpp1213 UChar32 sourceChar = U_SENTINEL; local
1219 if(sourceChar < 0) {
1221 sourceChar = nfdString.char32At(sourceIndex);
1222 sourceCC = nfd.getCombiningClass(sourceChar);
1236 // Composite + sourceChar would not be FCD.
1241 } else if(decompChar != sourceChar) {
1244 } else { // match: decompChar == sourceChar
1248 sourceChar = U_SENTINEL;
1252 if(sourceChar >= 0) { // more characters from nfdString but not from decomp

Completed in 133 milliseconds