Home | History | Annotate | Download | only in gennorm2

Lines Matching refs:composite

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