Home
last modified time | relevance | path

Searched refs:newRuleValue (Results 1 – 4 of 4) sorted by relevance

/external/icu/android_icu4j/src/main/java/android/icu/text/
DNFSubstitution.java511 public abstract double composeRuleValue(double newRuleValue, double oldRuleValue); in composeRuleValue() argument
623 public double composeRuleValue(double newRuleValue, double oldRuleValue) { in composeRuleValue() argument
624 return newRuleValue; in composeRuleValue()
774 public double composeRuleValue(double newRuleValue, double oldRuleValue) { in composeRuleValue() argument
775 return newRuleValue * divisor; in composeRuleValue()
1039 public double composeRuleValue(double newRuleValue, double oldRuleValue) { in composeRuleValue() argument
1040 return (oldRuleValue - (oldRuleValue % divisor)) + newRuleValue; in composeRuleValue()
1139 public double composeRuleValue(double newRuleValue, double oldRuleValue) { in composeRuleValue() argument
1140 return newRuleValue + oldRuleValue; in composeRuleValue()
1363 public double composeRuleValue(double newRuleValue, double oldRuleValue) { in composeRuleValue() argument
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DNFSubstitution.java510 public abstract double composeRuleValue(double newRuleValue, double oldRuleValue); in composeRuleValue() argument
622 public double composeRuleValue(double newRuleValue, double oldRuleValue) { in composeRuleValue() argument
623 return newRuleValue; in composeRuleValue()
773 public double composeRuleValue(double newRuleValue, double oldRuleValue) { in composeRuleValue() argument
774 return newRuleValue * divisor; in composeRuleValue()
1038 public double composeRuleValue(double newRuleValue, double oldRuleValue) { in composeRuleValue() argument
1039 return (oldRuleValue - (oldRuleValue % divisor)) + newRuleValue; in composeRuleValue()
1138 public double composeRuleValue(double newRuleValue, double oldRuleValue) { in composeRuleValue() argument
1139 return newRuleValue + oldRuleValue; in composeRuleValue()
1362 public double composeRuleValue(double newRuleValue, double oldRuleValue) { in composeRuleValue() argument
[all …]
/external/icu/icu4c/source/i18n/
Dnfsubs.cpp60 …virtual double composeRuleValue(double newRuleValue, double /*oldRuleValue*/) const { return newRu… in composeRuleValue() argument
110 virtual double composeRuleValue(double newRuleValue, double /*oldRuleValue*/) const { in composeRuleValue() argument
111 return newRuleValue * divisor; in composeRuleValue()
160 virtual double composeRuleValue(double newRuleValue, double oldRuleValue) const { in composeRuleValue() argument
161 return oldRuleValue - uprv_fmod(oldRuleValue, static_cast<double>(divisor)) + newRuleValue; in composeRuleValue()
190 …virtual double composeRuleValue(double newRuleValue, double oldRuleValue) const { return newRuleVa… in composeRuleValue() argument
226 …virtual double composeRuleValue(double newRuleValue, double oldRuleValue) const { return newRuleVa… in composeRuleValue() argument
248 …virtual double composeRuleValue(double newRuleValue, double /*oldRuleValue*/) const { return -newR… in composeRuleValue() argument
297 …virtual double composeRuleValue(double newRuleValue, double oldRuleValue) const { return newRuleVa… in composeRuleValue() argument
Dnfsubs.h208 virtual double composeRuleValue(double newRuleValue, double oldRuleValue) const = 0;