Home | History | Annotate | Download | only in i18n

Lines Matching refs:pattern

68 // Creates a ChoiceFormat instance based on the pattern.
124 // pattern and populates UParseError
286 ChoiceFormat::applyPattern(const UnicodeString& pattern,
290 applyPattern(pattern, parseError, status);
294 // Applies the pattern to this ChoiceFormat instance.
297 ChoiceFormat::applyPattern(const UnicodeString& pattern,
311 // this pattern (fCount), which is 1 more than the number of
315 for (i=0; i<pattern.length(); ++i) {
316 UChar c = pattern[i];
323 } while (i<pattern.length() &&
324 pattern[i] != SINGLE_QUOTE);
325 if ((i+1)<pattern.length() &&
326 pattern[i+1] == SINGLE_QUOTE) {
367 for (i=0; i<pattern.length(); ++i) {
368 UChar c = pattern[i];
371 if ((i+1) < pattern.length() &&
372 pattern[i+1] == SINGLE_QUOTE) {
451 syntaxError(pattern,i,parseError);
459 // Reconstruct the original input pattern.