Home | History | Annotate | Download | only in i18n

Lines Matching refs:upperBound

550  * of its rules (with a base value less than upperBound) and returns
557 * @param upperBound Limits the rules that can be allowed to match.
558 * Only rules whose base values are strictly less than upperBound
585 NFRuleSet::parse(const UnicodeString& text, ParsePosition& pos, double upperBound, Formattable& result) const
614 fprintf(stderr, " <nfrs before negative> %x ub: %g\n", negativeNumberRule, upperBound);
616 UBool success = negativeNumberRule->doParse(text, workingPos, 0, upperBound, tempResult);
636 UBool success = fractionRules[i]->doParse(text, workingPos, 0, upperBound, tempResult);
661 int64_t ub = util64_fromDouble(upperBound);
668 fprintf(stderr, "ub: %g, i64: %s (%s)\n", upperBound, ubstr, ubstrhex);
676 UBool success = rules[i]->doParse(text, workingPos, fIsFractionRuleSet, upperBound, tempResult);