Home | History | Annotate | Download | only in i18n

Lines Matching refs:temp

516     int64_t temp = util64_pow(radix, tempResult + 1);
517 if (temp <= baseValue) {
575 UnicodeString temp(buffer, len);
576 result.append(temp);
620 UnicodeString temp;
621 sub2->toString(temp);
622 ruleTextCopy.insert(sub2->getPos(), temp);
623 sub1->toString(temp);
624 ruleTextCopy.insert(sub1->getPos(), temp);
834 UnicodeString temp;
842 temp.setTo(ruleText, sub1->getPos(), sub2->getPos() - sub1->getPos());
844 temp, pp, sub1,
862 temp.setTo(ruleText, sub2->getPos(), ruleText.length() - sub2->getPos());
864 temp, pp2, sub2,
879 int32_t temp = pp2.getErrorIndex() + sub1->getPos() + pp.getIndex();
880 if (temp> parsePosition.getErrorIndex()) {
881 parsePosition.setErrorIndex(temp);
888 int32_t temp = sub1->getPos() + pp.getErrorIndex();
889 if (temp > parsePosition.getErrorIndex()) {
890 parsePosition.setErrorIndex(temp);
1253 UnicodeString temp;
1254 temp.setTo(str, 0, prefix.length());
1255 if (collator->equals(temp, prefix)) {
1269 UnicodeString temp;
1270 temp.setTo(str, 0, p);
1271 if (collator->equals(temp, prefix)) {
1347 UnicodeString temp;
1350 temp.setTo(str, p, str.length() - p);
1351 keyLen = prefixLength(temp, key, status);