• Home
  • Raw
  • Download

Lines Matching refs:toInsertInto

739 NFRule::doFormat(int64_t number, UnicodeString& toInsertInto, int32_t pos, int32_t recursionCount, …  in doFormat()  argument
749 toInsertInto.insert(pos, fRuleText); in doFormat()
754 int initialLength = toInsertInto.length(); in doFormat()
756 toInsertInto.insert(pos, fRuleText.tempSubString(pluralRuleEnd + 2)); in doFormat()
758 toInsertInto.insert(pos, in doFormat()
761 toInsertInto.insert(pos, fRuleText.tempSubString(0, pluralRuleStart)); in doFormat()
763 lengthOffset = fRuleText.length() - (toInsertInto.length() - initialLength); in doFormat()
767 …sub2->doSubstitution(number, toInsertInto, pos - (sub2->getPos() > pluralRuleStart ? lengthOffset … in doFormat()
770 …sub1->doSubstitution(number, toInsertInto, pos - (sub1->getPos() > pluralRuleStart ? lengthOffset … in doFormat()
784 NFRule::doFormat(double number, UnicodeString& toInsertInto, int32_t pos, int32_t recursionCount, U… in doFormat() argument
795 toInsertInto.insert(pos, fRuleText); in doFormat()
800 int initialLength = toInsertInto.length(); in doFormat()
802 toInsertInto.insert(pos, fRuleText.tempSubString(pluralRuleEnd + 2)); in doFormat()
813 toInsertInto.insert(pos, rulePatternFormat->format((int32_t)(pluralVal), status)); in doFormat()
815 toInsertInto.insert(pos, fRuleText.tempSubString(0, pluralRuleStart)); in doFormat()
817 lengthOffset = fRuleText.length() - (toInsertInto.length() - initialLength); in doFormat()
821 …sub2->doSubstitution(number, toInsertInto, pos - (sub2->getPos() > pluralRuleStart ? lengthOffset … in doFormat()
824 …sub1->doSubstitution(number, toInsertInto, pos - (sub1->getPos() > pluralRuleStart ? lengthOffset … in doFormat()