Lines Matching defs:const
54 virtual int64_t transformNumber(int64_t number) const { return number; } in transformNumber()
55 virtual double transformNumber(double number) const { return number; } in transformNumber()
56 …ouble composeRuleValue(double newRuleValue, double /*oldRuleValue*/) const { return newRuleValue; } in composeRuleValue()
57 virtual double calcUpperBound(double oldUpperBound) const { return oldUpperBound; } in calcUpperBound()
95 virtual int64_t transformNumber(int64_t number) const { in transformNumber()
99 virtual double transformNumber(double number) const { in transformNumber()
107 virtual double composeRuleValue(double newRuleValue, double /*oldRuleValue*/) const { in composeRuleValue()
111 virtual double calcUpperBound(double /*oldUpperBound*/) const { return divisor; } in calcUpperBound()
147 virtual int64_t transformNumber(int64_t number) const { return number % ldivisor; } in transformNumber()
148 virtual double transformNumber(double number) const { return uprv_fmod(number, divisor); } in transformNumber()
157 virtual double composeRuleValue(double newRuleValue, double oldRuleValue) const { in composeRuleValue()
161 virtual double calcUpperBound(double /*oldUpperBound*/) const { return divisor; } in calcUpperBound()
181 virtual int64_t transformNumber(int64_t number) const { return number; } in transformNumber()
182 virtual double transformNumber(double number) const { return uprv_floor(number); } in transformNumber()
183 …virtual double composeRuleValue(double newRuleValue, double oldRuleValue) const { return newRuleVa… in composeRuleValue()
184 virtual double calcUpperBound(double /*oldUpperBound*/) const { return DBL_MAX; } in calcUpperBound()
206 …void doSubstitution(int64_t /*number*/, UnicodeString& /*toInsertInto*/, int32_t /*_pos*/) const {} in doSubstitution()
207 virtual int64_t transformNumber(int64_t /*number*/) const { return 0; } in transformNumber()
208 virtual double transformNumber(double number) const { return number - uprv_floor(number); } in transformNumber()
217 …virtual double composeRuleValue(double newRuleValue, double oldRuleValue) const { return newRuleVa… in composeRuleValue()
218 virtual double calcUpperBound(double /*oldUpperBound*/) const { return 0.0; } in calcUpperBound()
235 virtual int64_t transformNumber(int64_t number) const { return number >= 0 ? number : -number; } in transformNumber()
236 virtual double transformNumber(double number) const { return uprv_fabs(number); } in transformNumber()
237 …uble composeRuleValue(double newRuleValue, double /*oldRuleValue*/) const { return -newRuleValue; } in composeRuleValue()
238 virtual double calcUpperBound(double /*oldUpperBound*/) const { return DBL_MAX; } in calcUpperBound()
272 virtual int64_t transformNumber(int64_t number) const { return number * ldenominator; } in transformNumber()
273 virtual double transformNumber(double number) const { return uprv_round(number * denominator); } in transformNumber()
275 …void doSubstitution(int64_t /*number*/, UnicodeString& /*toInsertInto*/, int32_t /*_pos*/) const {} in doSubstitution()
284 …virtual double composeRuleValue(double newRuleValue, double oldRuleValue) const { return newRuleVa… in composeRuleValue()
285 virtual double calcUpperBound(double /*oldUpperBound*/) const { return denominator; } in calcUpperBound()
304 virtual void toString(UnicodeString& /*result*/) const {} in toString()
305 … void doSubstitution(double /*number*/, UnicodeString& /*toInsertInto*/, int32_t /*_pos*/) const {} in doSubstitution()
306 …void doSubstitution(int64_t /*number*/, UnicodeString& /*toInsertInto*/, int32_t /*_pos*/) const {} in doSubstitution()
307 virtual int64_t transformNumber(int64_t /*number*/) const { return 0; } in transformNumber()
308 virtual double transformNumber(double /*number*/) const { return 0; } in transformNumber()
314 Formattable& result) const in doParse()
316 …seRuleValue(double /*newRuleValue*/, double /*oldRuleValue*/) const { return 0.0; } // never called in composeRuleValue()
317 virtual double calcUpperBound(double /*oldUpperBound*/) const { return 0; } // never called in calcUpperBound()
544 NFSubstitution::toString(UnicodeString& text) const in toString()
578 NFSubstitution::doSubstitution(int64_t number, UnicodeString& toInsertInto, int32_t _pos) const in doSubstitution()
612 NFSubstitution::doSubstitution(double number, UnicodeString& toInsertInto, int32_t _pos) const { in doSubstitution()
680 Formattable& result) const in doParse()
870 ModulusSubstitution::doSubstitution(int64_t number, UnicodeString& toInsertInto, int32_t _pos) const in doSubstitution()
895 ModulusSubstitution::doSubstitution(double number, UnicodeString& toInsertInto, int32_t _pos) const in doSubstitution()
931 Formattable& result) const in doParse()
1012 …nalPartSubstitution::doSubstitution(double number, UnicodeString& toInsertInto, int32_t _pos) const in doSubstitution()
1100 Formattable& resVal) const in doParse()
1167 FractionalPartSubstitution::operator==(const NFSubstitution& rhs) const in operator ==() argument
1232 Formattable& result) const in doParse()
1299 NumeratorSubstitution::operator==(const NFSubstitution& rhs) const in operator ==() argument