Lines Matching refs:pat
34 UnicodeString pat(patternLength==-1, pattern, patternLength); in uset_openPattern() local
35 UnicodeSet* set = new UnicodeSet(pat, *ec); in uset_openPattern()
54 UnicodeString pat(patternLength==-1, pattern, patternLength); in uset_openPatternOptions() local
55 UnicodeSet* set = new UnicodeSet(pat, options, NULL, *ec); in uset_openPatternOptions()
90 UnicodeString pat(pattern, patternLength); in uset_applyPattern() local
94 ((UnicodeSet*) set)->applyPattern(pat, pos, options, NULL, *status); in uset_applyPattern()
121 UnicodeString pat(pattern, patternLength); in uset_resemblesPattern() local
123 return ((pos+1) < pat.length() && in uset_resemblesPattern()
124 pat.charAt(pos) == (UChar)91/*[*/) || in uset_resemblesPattern()
125 UnicodeSet::resemblesPattern(pat, pos); in uset_resemblesPattern()
133 UnicodeString pat; in uset_toPattern() local
134 ((const UnicodeSet*) set)->toPattern(pat, escapeUnprintable); in uset_toPattern()
135 return pat.extract(result, resultCapacity, *ec); in uset_toPattern()