Searched refs:tempPP (Results 1 – 3 of 3) sorted by relevance
/external/icu/icu4c/source/i18n/ |
D | nfrule.cpp | 1165 ParsePosition tempPP; in matchToDelimiter() local 1181 UBool success = sub->doParse(subText, tempPP, _baseValue, upperBound, in matchToDelimiter() 1195 if (success && tempPP.getIndex() == dPos) { in matchToDelimiter() 1202 if (tempPP.getErrorIndex() > 0) { in matchToDelimiter() 1203 pp.setErrorIndex(tempPP.getErrorIndex()); in matchToDelimiter() 1205 pp.setErrorIndex(tempPP.getIndex()); in matchToDelimiter() 1213 tempPP.setIndex(0); in matchToDelimiter() 1230 ParsePosition tempPP; in matchToDelimiter() local 1234 UBool success = sub->doParse(text, tempPP, _baseValue, upperBound, in matchToDelimiter() 1241 if (success && (tempPP.getIndex() != 0)) { in matchToDelimiter() [all …]
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | NFRule.java | 1131 ParsePosition tempPP = new ParsePosition(0); in matchToDelimiter() local 1147 tempResult = sub.doParse(subText, tempPP, baseVal, upperBound, in matchToDelimiter() 1156 if (tempPP.getIndex() == dPos) { in matchToDelimiter() 1173 tempPP.setIndex(0); in matchToDelimiter() 1192 ParsePosition tempPP = new ParsePosition(0); in matchToDelimiter() local 1195 Number tempResult = sub.doParse(text, tempPP, baseVal, upperBound, in matchToDelimiter() 1197 if (tempPP.getIndex() != 0) { in matchToDelimiter() 1202 pp.setIndex(tempPP.getIndex()); in matchToDelimiter()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | NFRule.java | 1130 ParsePosition tempPP = new ParsePosition(0); in matchToDelimiter() local 1146 tempResult = sub.doParse(subText, tempPP, baseVal, upperBound, in matchToDelimiter() 1155 if (tempPP.getIndex() == dPos) { in matchToDelimiter() 1172 tempPP.setIndex(0); in matchToDelimiter() 1191 ParsePosition tempPP = new ParsePosition(0); in matchToDelimiter() local 1194 Number tempResult = sub.doParse(text, tempPP, baseVal, upperBound, in matchToDelimiter() 1196 if (tempPP.getIndex() != 0) { in matchToDelimiter() 1201 pp.setIndex(tempPP.getIndex()); in matchToDelimiter()
|