Home | History | Annotate | Download | only in common

Lines Matching refs:rule

28 int32_t ICU_Utility::parseInteger(const UnicodeString& rule, int32_t& pos, int32_t limit) {
34 if (p < limit && rule.charAt(p) == 48 /*0*/) {
35 if (p+1 < limit && (rule.charAt(p+1) == 0x78 /*x*/ || rule.charAt(p+1) == 0x58 /*X*/)) {
47 int32_t d = u_digit(rule.charAt(p++), radix);
88 int32_t ICU_Utility::parsePattern(const UnicodeString& rule, int32_t pos, int32_t limit,
101 c = rule.charAt(pos++);
108 pos = skipWhitespace(rule, pos);
112 parsedInts[intCount++] = parseInteger(rule, p, limit);
123 c = (UChar) u_tolower(rule.charAt(pos++));