Lines Matching refs:composite
94 CompositionPair(UChar32 t, UChar32 c) : trail(t), composite(c) {}
95 UChar32 trail, composite;
129 UVector32 *compositions; // (trail, composite) pairs
378 // Insert (trail, composite) pair into compositions list for the lead character.
428 return pairs[i].composite;
585 void setComposite(UChar32 composite, int32_t combMarkIndex) {
586 fArray[fLastStarterIndex]=composite<<8;
587 // Remove the combining mark that contributed to the composite.
663 return FALSE; // the composite does not combine further
769 // 22 bits for the composite character and whether it combines forward.
770 UChar32 compositeAndFwd=pair.composite<<1;
771 if(getNormRef(pair.composite).compositions!=NULL) {
772 compositeAndFwd|=1; // The composite character also combines-forward.