Lines Matching refs:temp
518 int64_t temp = util64_pow(radix, tempResult + 1);
519 if (temp <= baseValue) {
577 UnicodeString temp(buffer, len);
578 result.append(temp);
622 UnicodeString temp;
623 sub2->toString(temp);
624 ruleTextCopy.insert(sub2->getPos(), temp);
625 sub1->toString(temp);
626 ruleTextCopy.insert(sub1->getPos(), temp);
836 UnicodeString temp;
844 temp.setTo(ruleText, sub1->getPos(), sub2->getPos() - sub1->getPos());
846 temp, pp, sub1,
864 temp.setTo(ruleText, sub2->getPos(), ruleText.length() - sub2->getPos());
866 temp, pp2, sub2,
881 int32_t temp = pp2.getErrorIndex() + sub1->getPos() + pp.getIndex();
882 if (temp> parsePosition.getErrorIndex()) {
883 parsePosition.setErrorIndex(temp);
890 int32_t temp = sub1->getPos() + pp.getErrorIndex();
891 if (temp > parsePosition.getErrorIndex()) {
892 parsePosition.setErrorIndex(temp);
1255 UnicodeString temp;
1256 temp.setTo(str, 0, prefix.length());
1257 if (collator->equals(temp, prefix)) {
1271 UnicodeString temp;
1272 temp.setTo(str, 0, p);
1273 if (collator->equals(temp, prefix)) {
1349 UnicodeString temp;
1352 temp.setTo(str, p, str.length() - p);
1353 keyLen = prefixLength(temp, key, status);