Lines Matching refs:pat
36 UnicodeString pat(patternLength==-1, pattern, patternLength); in uset_openPattern() local
37 UnicodeSet* set = new UnicodeSet(pat, *ec); in uset_openPattern()
56 UnicodeString pat(patternLength==-1, pattern, patternLength); in uset_openPatternOptions() local
57 UnicodeSet* set = new UnicodeSet(pat, options, NULL, *ec); in uset_openPatternOptions()
92 UnicodeString pat(pattern, patternLength); in uset_applyPattern() local
96 ((UnicodeSet*) set)->applyPattern(pat, pos, options, NULL, *status); in uset_applyPattern()
123 UnicodeString pat(pattern, patternLength); in uset_resemblesPattern() local
125 return ((pos+1) < pat.length() && in uset_resemblesPattern()
126 pat.charAt(pos) == (UChar)91/*[*/) || in uset_resemblesPattern()
127 UnicodeSet::resemblesPattern(pat, pos); in uset_resemblesPattern()
135 UnicodeString pat; in uset_toPattern() local
136 ((const UnicodeSet*) set)->toPattern(pat, escapeUnprintable); in uset_toPattern()
137 return pat.extract(result, resultCapacity, *ec); in uset_toPattern()