Home | History | Annotate | Download | only in common

Lines Matching refs:UnicodeSet

124     fRuleSets[kRuleSet_rule_char-128]       = UnicodeSet(gRuleSet_rule_char_pattern,       *rb->fStatus);
125 UnicodeSet *whitespaceSet = uprv_openRuleWhiteSpaceSet(rb->fStatus);
131 fRuleSets[kRuleSet_name_char-128] = UnicodeSet(gRuleSet_name_char_pattern, *rb->fStatus);
132 fRuleSets[kRuleSet_name_start_char-128] = UnicodeSet(gRuleSet_name_start_char_pattern, *rb->fStatus);
133 fRuleSets[kRuleSet_digit_char-128] = UnicodeSet(gRuleSet_digit_char_pattern, *rb->fStatus);
135 // This case happens if ICU's data is missing. UnicodeSet tries to look up property
668 void RBBIRuleScanner::findSetFor(const UnicodeString &s, RBBINode *node, UnicodeSet *setToAdopt) {
685 // create a new UnicodeSet now.
688 setToAdopt = new UnicodeSet(0x000000, 0x10ffff);
692 setToAdopt = new UnicodeSet(c, c);
697 // Make a new uset node to refer to this UnicodeSet
1124 // scanSet Construct a UnicodeSet from the text at the current scan
1133 // the UnicodeSet constructor, not by the RBBI rule parser.
1137 UnicodeSet *uset;
1149 uset = new UnicodeSet(fRB->fRules, pos, USET_IGNORE_SPACE,
1156 // TODO: Get more accurate position of the error from UnicodeSet's return info.
1157 // UnicodeSet appears to not be reporting correctly at this time.
1159 RBBIDebugPrintf("UnicodeSet parse postion.ErrorIndex = %d\n", pos.getIndex());
1179 // Advance the RBBI parse postion over the UnicodeSet pattern.
1198 // - Adopts storage for the UnicodeSet, will be responsible for deleting.