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;
128 UVector32 *compositions; // (trail, composite) pairs
352 // Insert (trail, composite) pair into compositions list for the lead character.
402 return pairs[i].composite;
553 void setComposite(UChar32 composite, int32_t combMarkIndex) {
554 fArray[fLastStarterIndex]=composite<<8;
555 // Remove the combining mark that contributed to the composite.
623 return FALSE; // the composite does not combine further
690 // 22 bits for the composite character and whether it combines forward.
691 UChar32 compositeAndFwd=pair.composite<<1;
692 if(getNormRef(pair.composite).compositions!=NULL) {
693 compositeAndFwd|=1; // The composite character also combines-forward.