• Home
  • Raw
  • Download

Lines Matching refs:UnicodeSet

91 static inline void addCategory(UnicodeSet *set, int32_t value, UErrorCode& ec) {  in addCategory()
92 set->addAll(UnicodeSet().applyIntPropertyValue(UCHAR_GENERAL_CATEGORY_MASK, value, ec)); in addCategory()
270 delete (UnicodeSet *)fSetStack.pop(); in compile()
328 UnicodeSet *s = (UnicodeSet *)fRXPat->fSets->elementAt(i); in compile()
1233 UnicodeSet *theSet = scanProp(); in doParseActions()
1472 UnicodeSet *set = (UnicodeSet *)fSetStack.peek(); in doParseActions()
1479 UnicodeSet *set = (UnicodeSet *)fSetStack.peek(); in doParseActions()
1486 UnicodeSet *set = (UnicodeSet *)fSetStack.peek(); in doParseActions()
1493 UnicodeSet *set = (UnicodeSet *)fSetStack.peek(); in doParseActions()
1494 UnicodeSet SSet(*RegexStaticSets::gStaticSets->fPropSets[URX_ISSPACE_SET]); in doParseActions()
1502 UnicodeSet *set = (UnicodeSet *)fSetStack.peek(); in doParseActions()
1510 UnicodeSet *set = (UnicodeSet *)fSetStack.peek(); in doParseActions()
1511 UnicodeSet digits; in doParseActions()
1521 UnicodeSet *set = (UnicodeSet *)fSetStack.peek(); in doParseActions()
1528 UnicodeSet *set = (UnicodeSet *)fSetStack.peek(); in doParseActions()
1529 UnicodeSet SSet(*RegexStaticSets::gStaticSets->fPropSets[URX_ISWORD_SET]); in doParseActions()
1536 fSetStack.push(new UnicodeSet(), *fStatus); in doParseActions()
1597 UnicodeSet *theSet = (UnicodeSet *)fSetStack.pop(); in doParseActions()
1616 UnicodeSet *s = (UnicodeSet *)fSetStack.peek(); in doParseActions()
1633 UnicodeSet *s = (UnicodeSet *)fSetStack.peek(); in doParseActions()
1646 UnicodeSet *s = (UnicodeSet *)fSetStack.peek(); in doParseActions()
1663 UnicodeSet *s = (UnicodeSet *)fSetStack.peek(); in doParseActions()
1700 UnicodeSet *s = scanPosixProp(); in doParseActions()
1702 UnicodeSet *tos = (UnicodeSet *)fSetStack.peek(); in doParseActions()
1712 UnicodeSet *s = scanProp(); in doParseActions()
1714 UnicodeSet *tos = (UnicodeSet *)fSetStack.peek(); in doParseActions()
1732 UnicodeSet *s = (UnicodeSet *)fSetStack.peek(); in doParseActions()
2247 void RegexCompile::compileSet(UnicodeSet *theSet) in compileSet()
2518 const UnicodeSet *s = (UnicodeSet *)fRXPat->fSets->elementAt(sn); in matchStartType()
2532 const UnicodeSet *s = (UnicodeSet *)fRXPat->fSets->elementAt(sn); in matchStartType()
2555 const UnicodeSet *s = fRXPat->fStaticSets[sn]; in matchStartType()
2568 const UnicodeSet *s = fRXPat->fStaticSets[sn]; in matchStartType()
2569 UnicodeSet sc(*s); in matchStartType()
2583 UnicodeSet s; in matchStartType()
2603 UnicodeSet s(c, c); in matchStartType()
2728 UnicodeSet s(c, c); in matchStartType()
3918 UnicodeSet *RegexCompile::scanProp() { in scanProp()
3919 UnicodeSet *uset = NULL; in scanProp()
3969 UnicodeSet *RegexCompile::scanPosixProp() { in scanPosixProp()
3970 UnicodeSet *uset = NULL; in scanPosixProp()
4046 static inline void addIdentifierIgnorable(UnicodeSet *set, UErrorCode& ec) { in addIdentifierIgnorable()
4059 UnicodeSet *RegexCompile::createSetForProperty(const UnicodeString &propName, UBool negated) { in createSetForProperty()
4061 UnicodeSet *set; in createSetForProperty()
4082 set = new UnicodeSet(setExpr, usetFlags, NULL, *fStatus); in createSetForProperty()
4097 set = new UnicodeSet(*(fRXPat->fStaticSets[URX_ISWORD_SET])); in createSetForProperty()
4146 set = new UnicodeSet(setExpr, usetFlags, NULL, *fStatus); in createSetForProperty()
4159 set = new UnicodeSet(); in createSetForProperty()
4210 set->add(0x10000, UnicodeSet::MAX_VALUE); in createSetForProperty()
4232 set->add(0, UnicodeSet::MAX_VALUE); in createSetForProperty()
4236 set->removeAll(UnicodeSet().add(0xa0).add(0x2007).add(0x202f)); in createSetForProperty()
4240 set->add(0, UnicodeSet::MAX_VALUE); in createSetForProperty()
4269 UnicodeSet *rightOperand = NULL; in setEval()
4270 UnicodeSet *leftOperand = NULL; in setEval()
4279 rightOperand = (UnicodeSet *)fSetStack.peek(); in setEval()
4292 leftOperand = (UnicodeSet *)fSetStack.peek(); in setEval()
4299 leftOperand = (UnicodeSet *)fSetStack.peek(); in setEval()
4305 leftOperand = (UnicodeSet *)fSetStack.peek(); in setEval()
4319 fSetStack.push(new UnicodeSet(), *fStatus); in setPushOp()