Home | History | Annotate | Download | only in common

Lines Matching refs:UnicodeSet

122         = UnicodeSet(UnicodeString(gRuleSet_rule_char_pattern),       *rb->fStatus);
127 = UnicodeSet(UnicodeString(gRuleSet_name_char_pattern), *rb->fStatus);
129 = UnicodeSet(UnicodeString(gRuleSet_name_start_char_pattern), *rb->fStatus);
131 = UnicodeSet(UnicodeString(gRuleSet_digit_char_pattern), *rb->fStatus);
133 // This case happens if ICU's data is missing. UnicodeSet tries to look up property
699 void RBBIRuleScanner::findSetFor(const UnicodeString &s, RBBINode *node, UnicodeSet *setToAdopt) {
716 // create a new UnicodeSet now.
719 setToAdopt = new UnicodeSet(0x000000, 0x10ffff);
723 setToAdopt = new UnicodeSet(c, c);
728 // Make a new uset node to refer to this UnicodeSet
1162 // scanSet Construct a UnicodeSet from the text at the current scan
1171 // the UnicodeSet constructor, not by the RBBI rule parser.
1175 UnicodeSet *uset;
1187 uset = new UnicodeSet();
1194 // TODO: Get more accurate position of the error from UnicodeSet's return info.
1195 // UnicodeSet appears to not be reporting correctly at this time.
1197 RBBIDebugPrintf("UnicodeSet parse postion.ErrorIndex = %d\n", pos.getIndex());
1218 // Advance the RBBI parse postion over the UnicodeSet pattern.
1240 // - Adopts storage for the UnicodeSet, will be responsible for deleting.