Searched defs:compositeAndFwd (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/icu/source/tools/gennorm2/
H A Dn2builder.cpp691 UChar32 compositeAndFwd=pair.composite<<1; local
693 compositeAndFwd|=1; // The composite character also combines-forward.
698 if(compositeAndFwd<=0xffff) {
700 secondUnit=compositeAndFwd;
704 secondUnit=compositeAndFwd>>16;
705 thirdUnit=compositeAndFwd;
712 (compositeAndFwd>>16);
713 thirdUnit=compositeAndFwd;
/external/chromium_org/third_party/icu/source/common/
H A Dnormalizer2impl.cpp637 * the following "compositeAndFwd" value:
642 * The compositions list has (trail, compositeAndFwd) pair entries,
705 int32_t compositeAndFwd; local
709 compositeAndFwd=list[1];
712 compositeAndFwd=(((int32_t)list[1]&~COMP_2_TRAIL_MASK)<<16)|list[2];
715 UChar32 composite=compositeAndFwd>>1;
716 if((compositeAndFwd&1)!=0) {
743 UChar32 c, compositeAndFwd; local
803 } else if((compositeAndFwd=combine(compositionsList, c))>=0) {
805 UChar32 composite=compositeAndFwd>>
[all...]
/external/icu4c/common/
H A Dnormalizer2impl.cpp712 * the following "compositeAndFwd" value:
717 * The compositions list has (trail, compositeAndFwd) pair entries,
780 int32_t compositeAndFwd; local
784 compositeAndFwd=list[1];
787 compositeAndFwd=(((int32_t)list[1]&~COMP_2_TRAIL_MASK)<<16)|list[2];
790 UChar32 composite=compositeAndFwd>>1;
791 if((compositeAndFwd&1)!=0) {
818 UChar32 c, compositeAndFwd; local
878 } else if((compositeAndFwd=combine(compositionsList, c))>=0) {
880 UChar32 composite=compositeAndFwd>>
[all...]
/external/icu4c/tools/gennorm2/
H A Dn2builder.cpp769 UChar32 compositeAndFwd=pair.composite<<1; local
771 compositeAndFwd|=1; // The composite character also combines-forward.
776 if(compositeAndFwd<=0xffff) {
778 secondUnit=compositeAndFwd;
782 secondUnit=compositeAndFwd>>16;
783 thirdUnit=compositeAndFwd;
790 (compositeAndFwd>>16);
791 thirdUnit=compositeAndFwd;

Completed in 59 milliseconds