Home
last modified time | relevance | path

Searched refs:recursionCount (Results 1 – 13 of 13) sorted by relevance

/external/icu/android_icu4j/src/main/java/android/icu/text/
DNFSubstitution.java292 …ic void doSubstitution(long number, StringBuilder toInsertInto, int position, int recursionCount) { in doSubstitution() argument
299 ruleSet.format(numberToFormat, toInsertInto, position + pos, recursionCount); in doSubstitution()
315 … void doSubstitution(double number, StringBuilder toInsertInto, int position, int recursionCount) { in doSubstitution() argument
323 infiniteRule.doFormat(numberToFormat, toInsertInto, position + pos, recursionCount); in doSubstitution()
330 ruleSet.format((long)numberToFormat, toInsertInto, position + pos, recursionCount); in doSubstitution() local
337 ruleSet.format(numberToFormat, toInsertInto, position + pos, recursionCount); in doSubstitution()
878 …ic void doSubstitution(long number, StringBuilder toInsertInto, int position, int recursionCount) { in doSubstitution() argument
883 super.doSubstitution(number, toInsertInto, position, recursionCount); in doSubstitution()
889 ruleToUse.doFormat(numberToFormat, toInsertInto, position + pos, recursionCount); in doSubstitution()
901 … void doSubstitution(double number, StringBuilder toInsertInto, int position, int recursionCount) { in doSubstitution() argument
[all …]
DNFRuleSet.java434 public void format(long number, StringBuilder toInsertInto, int pos, int recursionCount) { in format() argument
435 if (recursionCount >= RECURSION_LIMIT) { in format()
439 applicableRule.doFormat(number, toInsertInto, pos, ++recursionCount); in format()
450 public void format(double number, StringBuilder toInsertInto, int pos, int recursionCount) { in format() argument
451 if (recursionCount >= RECURSION_LIMIT) { in format()
455 applicableRule.doFormat(number, toInsertInto, pos, ++recursionCount); in format()
DNFRule.java744 public void doFormat(long number, StringBuilder toInsertInto, int pos, int recursionCount) { in doFormat() argument
769 …(number, toInsertInto, pos - (sub2.getPos() > pluralRuleStart ? lengthOffset : 0), recursionCount); in doFormat()
772 …(number, toInsertInto, pos - (sub1.getPos() > pluralRuleStart ? lengthOffset : 0), recursionCount); in doFormat()
785 public void doFormat(double number, StringBuilder toInsertInto, int pos, int recursionCount) { in doFormat() argument
820 …(number, toInsertInto, pos - (sub2.getPos() > pluralRuleStart ? lengthOffset : 0), recursionCount); in doFormat()
823 …(number, toInsertInto, pos - (sub1.getPos() > pluralRuleStart ? lengthOffset : 0), recursionCount); in doFormat()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DNFSubstitution.java291 …ic void doSubstitution(long number, StringBuilder toInsertInto, int position, int recursionCount) { in doSubstitution() argument
298 ruleSet.format(numberToFormat, toInsertInto, position + pos, recursionCount); in doSubstitution()
314 … void doSubstitution(double number, StringBuilder toInsertInto, int position, int recursionCount) { in doSubstitution() argument
322 infiniteRule.doFormat(numberToFormat, toInsertInto, position + pos, recursionCount); in doSubstitution()
329 ruleSet.format((long)numberToFormat, toInsertInto, position + pos, recursionCount); in doSubstitution() local
336 ruleSet.format(numberToFormat, toInsertInto, position + pos, recursionCount); in doSubstitution()
877 …ic void doSubstitution(long number, StringBuilder toInsertInto, int position, int recursionCount) { in doSubstitution() argument
882 super.doSubstitution(number, toInsertInto, position, recursionCount); in doSubstitution()
888 ruleToUse.doFormat(numberToFormat, toInsertInto, position + pos, recursionCount); in doSubstitution()
900 … void doSubstitution(double number, StringBuilder toInsertInto, int position, int recursionCount) { in doSubstitution() argument
[all …]
DNFRuleSet.java433 public void format(long number, StringBuilder toInsertInto, int pos, int recursionCount) { in format() argument
434 if (recursionCount >= RECURSION_LIMIT) { in format()
438 applicableRule.doFormat(number, toInsertInto, pos, ++recursionCount); in format()
449 public void format(double number, StringBuilder toInsertInto, int pos, int recursionCount) { in format() argument
450 if (recursionCount >= RECURSION_LIMIT) { in format()
454 applicableRule.doFormat(number, toInsertInto, pos, ++recursionCount); in format()
DNFRule.java743 public void doFormat(long number, StringBuilder toInsertInto, int pos, int recursionCount) { in doFormat() argument
768 …(number, toInsertInto, pos - (sub2.getPos() > pluralRuleStart ? lengthOffset : 0), recursionCount); in doFormat()
771 …(number, toInsertInto, pos - (sub1.getPos() > pluralRuleStart ? lengthOffset : 0), recursionCount); in doFormat()
784 public void doFormat(double number, StringBuilder toInsertInto, int pos, int recursionCount) { in doFormat() argument
819 …(number, toInsertInto, pos - (sub2.getPos() > pluralRuleStart ? lengthOffset : 0), recursionCount); in doFormat()
822 …(number, toInsertInto, pos - (sub1.getPos() > pluralRuleStart ? lengthOffset : 0), recursionCount); in doFormat()
/external/icu/icu4c/source/i18n/
Dnfsubs.cpp151 …on(int64_t number, UnicodeString& toInsertInto, int32_t pos, int32_t recursionCount, UErrorCode& s…
152 …ion(double number, UnicodeString& toInsertInto, int32_t pos, int32_t recursionCount, UErrorCode& s…
218 …ion(double number, UnicodeString& toInsertInto, int32_t pos, int32_t recursionCount, UErrorCode& s…
293 …ion(double number, UnicodeString& toInsertInto, int32_t pos, int32_t recursionCount, UErrorCode& s…
572 …n(int64_t number, UnicodeString& toInsertInto, int32_t _pos, int32_t recursionCount, UErrorCode& s… in doSubstitution() argument
578 … ruleSet->format(transformNumber(number), toInsertInto, _pos + this->pos, recursionCount, status); in doSubstitution()
606 …on(double number, UnicodeString& toInsertInto, int32_t _pos, int32_t recursionCount, UErrorCode& s… in doSubstitution() argument
614 … infiniteRule->doFormat(numberToFormat, toInsertInto, _pos + this->pos, recursionCount, status); in doSubstitution()
621 …>format(util64_fromDouble(numberToFormat), toInsertInto, _pos + this->pos, recursionCount, status); in doSubstitution()
628 ruleSet->format(numberToFormat, toInsertInto, _pos + this->pos, recursionCount, status); in doSubstitution()
[all …]
Dnfsubs.h118 …on(int64_t number, UnicodeString& toInsertInto, int32_t pos, int32_t recursionCount, UErrorCode& s…
130 …ion(double number, UnicodeString& toInsertInto, int32_t pos, int32_t recursionCount, UErrorCode& s…
Dnfrs.h55 …void format(int64_t number, UnicodeString& toAppendTo, int32_t pos, int32_t recursionCount, UErro…
56 …void format(double number, UnicodeString& toAppendTo, int32_t pos, int32_t recursionCount, UError…
Dnfrs.cpp399 NFRuleSet::format(int64_t number, UnicodeString& toAppendTo, int32_t pos, int32_t recursionCount, U… in format() argument
401 if (recursionCount >= RECURSION_LIMIT) { in format()
408 rule->doFormat(number, toAppendTo, pos, ++recursionCount, status); in format()
413 NFRuleSet::format(double number, UnicodeString& toAppendTo, int32_t pos, int32_t recursionCount, UE… in format() argument
415 if (recursionCount >= RECURSION_LIMIT) { in format()
422 rule->doFormat(number, toAppendTo, pos, ++recursionCount, status); in format()
Dnfrule.h71 …void doFormat(int64_t number, UnicodeString& toAppendTo, int32_t pos, int32_t recursionCount, UErr…
72 …void doFormat(double number, UnicodeString& toAppendTo, int32_t pos, int32_t recursionCount, UErr…
Dnfrule.cpp732 NFRule::doFormat(int64_t number, UnicodeString& toInsertInto, int32_t pos, int32_t recursionCount, … in doFormat() argument
760 …toInsertInto, pos - (sub2->getPos() > pluralRuleStart ? lengthOffset : 0), recursionCount, status); in doFormat()
763 …toInsertInto, pos - (sub1->getPos() > pluralRuleStart ? lengthOffset : 0), recursionCount, status); in doFormat()
777 NFRule::doFormat(double number, UnicodeString& toInsertInto, int32_t pos, int32_t recursionCount, U… in doFormat() argument
814 …toInsertInto, pos - (sub2->getPos() > pluralRuleStart ? lengthOffset : 0), recursionCount, status); in doFormat()
817 …toInsertInto, pos - (sub1->getPos() > pluralRuleStart ? lengthOffset : 0), recursionCount, status); in doFormat()
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...