HomeSort by relevance Sort by last modified time
    Searched refs:recursionCount (Results 1 - 17 of 17) sorted by null

  /external/icu/android_icu4j/src/main/java/android/icu/text/
NFSubstitution.java 290 public void doSubstitution(long number, StringBuffer toInsertInto, int position, int recursionCount) {
297 ruleSet.format(numberToFormat, toInsertInto, position + pos, recursionCount);
322 public void doSubstitution(double number, StringBuffer toInsertInto, int position, int recursionCount) {
330 infiniteRule.doFormat(numberToFormat, toInsertInto, position + pos, recursionCount);
337 ruleSet.format((long)numberToFormat, toInsertInto, position + pos, recursionCount);
344 ruleSet.format(numberToFormat, toInsertInto, position + pos, recursionCount);
    [all...]
NFRuleSet.java 432 public void format(long number, StringBuffer toInsertInto, int pos, int recursionCount) {
433 if (recursionCount >= RECURSION_LIMIT) {
437 applicableRule.doFormat(number, toInsertInto, pos, ++recursionCount);
448 public void format(double number, StringBuffer toInsertInto, int pos, int recursionCount) {
449 if (recursionCount >= RECURSION_LIMIT) {
453 applicableRule.doFormat(number, toInsertInto, pos, ++recursionCount);
    [all...]
NFRule.java 742 public void doFormat(long number, StringBuffer toInsertInto, int pos, int recursionCount) {
767 sub2.doSubstitution(number, toInsertInto, pos - (sub2.getPos() > pluralRuleStart ? lengthOffset : 0), recursionCount);
770 sub1.doSubstitution(number, toInsertInto, pos - (sub1.getPos() > pluralRuleStart ? lengthOffset : 0), recursionCount);
783 public void doFormat(double number, StringBuffer toInsertInto, int pos, int recursionCount) {
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
NFSubstitution.java 289 public void doSubstitution(long number, StringBuffer toInsertInto, int position, int recursionCount) {
296 ruleSet.format(numberToFormat, toInsertInto, position + pos, recursionCount);
321 public void doSubstitution(double number, StringBuffer toInsertInto, int position, int recursionCount) {
329 infiniteRule.doFormat(numberToFormat, toInsertInto, position + pos, recursionCount);
336 ruleSet.format((long)numberToFormat, toInsertInto, position + pos, recursionCount);
343 ruleSet.format(numberToFormat, toInsertInto, position + pos, recursionCount);
    [all...]
NFRuleSet.java 431 public void format(long number, StringBuffer toInsertInto, int pos, int recursionCount) {
432 if (recursionCount >= RECURSION_LIMIT) {
436 applicableRule.doFormat(number, toInsertInto, pos, ++recursionCount);
447 public void format(double number, StringBuffer toInsertInto, int pos, int recursionCount) {
448 if (recursionCount >= RECURSION_LIMIT) {
452 applicableRule.doFormat(number, toInsertInto, pos, ++recursionCount);
    [all...]
NFRule.java 741 public void doFormat(long number, StringBuffer toInsertInto, int pos, int recursionCount) {
766 sub2.doSubstitution(number, toInsertInto, pos - (sub2.getPos() > pluralRuleStart ? lengthOffset : 0), recursionCount);
769 sub1.doSubstitution(number, toInsertInto, pos - (sub1.getPos() > pluralRuleStart ? lengthOffset : 0), recursionCount);
782 public void doFormat(double number, StringBuffer toInsertInto, int pos, int recursionCount) {
    [all...]
  /external/icu/icu4c/source/i18n/
nfsubs.h 116 virtual void doSubstitution(int64_t number, UnicodeString& toInsertInto, int32_t pos, int32_t recursionCount, UErrorCode& status) const;
128 virtual void doSubstitution(double number, UnicodeString& toInsertInto, int32_t pos, int32_t recursionCount, UErrorCode& status) const;
nfsubs.cpp 149 virtual void doSubstitution(int64_t number, UnicodeString& toInsertInto, int32_t pos, int32_t recursionCount, UErrorCode& status) const;
150 virtual void doSubstitution(double number, UnicodeString& toInsertInto, int32_t pos, int32_t recursionCount, UErrorCode& status) const;
216 virtual void doSubstitution(double number, UnicodeString& toInsertInto, int32_t pos, int32_t recursionCount, UErrorCode& status) const;
217 virtual void doSubstitution(int64_t /*number*/, UnicodeString& /*toInsertInto*/, int32_t /*_pos*/, int32_t /*recursionCount*/, UErrorCode& /*status*/) const {}
290 virtual void doSubstitution(int64_t /*number*/, UnicodeString& /*toInsertInto*/, int32_t /*_pos*/, int32_t /*recursionCount*/, UErrorCode& /*status*/) const {}
291 virtual void doSubstitution(double number, UnicodeString& toInsertInto, int32_t pos, int32_t recursionCount, UErrorCode& status) const;
570 NFSubstitution::doSubstitution(int64_t number, UnicodeString& toInsertInto, int32_t _pos, int32_t recursionCount, UErrorCode& status) const
576 ruleSet->format(transformNumber(number), toInsertInto, _pos + this->pos, recursionCount, status);
604 NFSubstitution::doSubstitution(double number, UnicodeString& toInsertInto, int32_t _pos, int32_t recursionCount, UErrorCode& status) const {
612 infiniteRule->doFormat(numberToFormat, toInsertInto, _pos + this->pos, recursionCount, status)
    [all...]
nfrs.h 53 void format(int64_t number, UnicodeString& toAppendTo, int32_t pos, int32_t recursionCount, UErrorCode& status) const;
54 void format(double number, UnicodeString& toAppendTo, int32_t pos, int32_t recursionCount, UErrorCode& status) const;
nfrule.h 69 void doFormat(int64_t number, UnicodeString& toAppendTo, int32_t pos, int32_t recursionCount, UErrorCode& status) const;
70 void doFormat(double number, UnicodeString& toAppendTo, int32_t pos, int32_t recursionCount, UErrorCode& status) const;
nfrs.cpp 397 NFRuleSet::format(int64_t number, UnicodeString& toAppendTo, int32_t pos, int32_t recursionCount, UErrorCode& status) const
399 if (recursionCount >= RECURSION_LIMIT) {
406 rule->doFormat(number, toAppendTo, pos, ++recursionCount, status);
411 NFRuleSet::format(double number, UnicodeString& toAppendTo, int32_t pos, int32_t recursionCount, UErrorCode& status) const
413 if (recursionCount >= RECURSION_LIMIT) {
420 rule->doFormat(number, toAppendTo, pos, ++recursionCount, status);
nfrule.cpp 730 NFRule::doFormat(int64_t number, UnicodeString& toInsertInto, int32_t pos, int32_t recursionCount, UErrorCode& status) const
758 sub2->doSubstitution(number, toInsertInto, pos - (sub2->getPos() > pluralRuleStart ? lengthOffset : 0), recursionCount, status);
761 sub1->doSubstitution(number, toInsertInto, pos - (sub1->getPos() > pluralRuleStart ? lengthOffset : 0), recursionCount, status);
775 NFRule::doFormat(double number, UnicodeString& toInsertInto, int32_t pos, int32_t recursionCount, UErrorCode& status) const
812 sub2->doSubstitution(number, toInsertInto, pos - (sub2->getPos() > pluralRuleStart ? lengthOffset : 0), recursionCount, status);
815 sub1->doSubstitution(number, toInsertInto, pos - (sub1->getPos() > pluralRuleStart ? lengthOffset : 0), recursionCount, status);
    [all...]
  /external/libgdx/backends/gdx-backend-moe/libs/
intel-moe-core.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
com.ibm.icu_4.2.1.v20100412.jar 
  /prebuilts/misc/common/icu4j/
icu4j.jar 
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/53.1/
icu4j-53.1.jar 
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/54.1.1/
icu4j-54.1.1.jar 

Completed in 141 milliseconds