Lines Matching refs:rule
26 int32_t ICU_Utility::parseInteger(const UnicodeString& rule, int32_t& pos, int32_t limit) {
32 if (p < limit && rule.charAt(p) == 48 /*0*/) {
33 if (p+1 < limit && (rule.charAt(p+1) == 0x78 /*x*/ || rule.charAt(p+1) == 0x58 /*X*/)) {
45 int32_t d = u_digit(rule.charAt(p++), radix);
86 int32_t ICU_Utility::parsePattern(const UnicodeString& rule, int32_t pos, int32_t limit,
99 c = rule.charAt(pos++);
105 pos = skipWhitespace(rule, pos);
109 parsedInts[intCount++] = parseInteger(rule, p, limit);
120 c = (UChar) u_tolower(rule.charAt(pos++));