Home
last modified time | relevance | path

Searched refs:parsedPos (Results 1 – 4 of 4) sorted by relevance

/external/icu/android_icu4j/src/main/java/android/icu/text/
DTimeZoneFormat.java1032 … int parsedPos = -1; // stores successfully parsed offset position for later use in parse() local
1048 parsedPos = tmpPos.getIndex(); in parse()
1144 if (startIdx + match.matchLength() > parsedPos) { in parse()
1146 parsedPos = startIdx + match.matchLength(); in parse()
1151 pos.setIndex(parsedPos); in parse()
1165 if (startIdx + match.matchLength() > parsedPos) { in parse()
1167 parsedPos = startIdx + match.matchLength(); in parse()
1172 pos.setIndex(parsedPos); in parse()
1200 if (bestGeneric != null && (startIdx + bestGeneric.matchLength() > parsedPos)) { in parse()
1246 if (parsedPos > startIdx) { in parse()
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DTimeZoneFormat.java1093 … int parsedPos = -1; // stores successfully parsed offset position for later use in parse() local
1109 parsedPos = tmpPos.getIndex(); in parse()
1205 if (startIdx + match.matchLength() > parsedPos) { in parse()
1207 parsedPos = startIdx + match.matchLength(); in parse()
1212 pos.setIndex(parsedPos); in parse()
1226 if (startIdx + match.matchLength() > parsedPos) { in parse()
1228 parsedPos = startIdx + match.matchLength(); in parse()
1233 pos.setIndex(parsedPos); in parse()
1261 if (bestGeneric != null && (startIdx + bestGeneric.matchLength() > parsedPos)) { in parse()
1307 if (parsedPos > startIdx) { in parse()
[all …]
/external/icu/icu4c/source/i18n/
Dtzfmt.cpp835 …int32_t parsedPos = -1; // stores successfully parsed offset position for later use in parse() local
851 parsedPos = tmpPos.getIndex(); in parse()
960 if (matchPos > parsedPos) { in parse()
962 parsedPos = matchPos; in parse()
993 if (matchPos > parsedPos) { in parse()
995 parsedPos = matchPos; in parse()
1096 if (parsedPos > startIdx) { in parse()
1104 pos.setIndex(parsedPos); in parse()
1114 U_ASSERT(parsedPos < 0); in parse()
1118 if (parsedPos < maxPos && in parse()
[all …]
/external/icu/icu4c/source/test/intltest/
Dnumfmtst.cpp3277 int parsedPos; member
3317 int parsedPosition = DATA[i].parsedPos; in TestSpaceParsing()