Home | History | Annotate | Download | only in common

Lines Matching refs:cc

120     UBool append(UChar32 c, uint8_t cc, UErrorCode &errorCode) {
122 appendBMP((UChar)c, cc, errorCode) :
123 appendSupplementary(c, cc, errorCode);
129 UBool appendBMP(UChar c, uint8_t cc, UErrorCode &errorCode) {
133 if(lastCC<=cc || cc==0) {
135 lastCC=cc;
136 if(cc<=1) {
140 insert(c, cc);
160 * It is set to after the last known character with cc<=1,
161 * which stops previousCC() before it reads that character and looks up its cc.
171 UBool appendSupplementary(UChar32 c, uint8_t cc, UErrorCode &errorCode);
172 void insert(UChar32 c, uint8_t cc);