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.java1028 … int parsedPos = -1; // stores successfully parsed offset position for later use in parse() local
1044 parsedPos = tmpPos.getIndex(); in parse()
1140 if (startIdx + match.matchLength() > parsedPos) { in parse()
1142 parsedPos = startIdx + match.matchLength(); in parse()
1147 pos.setIndex(parsedPos); in parse()
1161 if (startIdx + match.matchLength() > parsedPos) { in parse()
1163 parsedPos = startIdx + match.matchLength(); in parse()
1168 pos.setIndex(parsedPos); in parse()
1196 if (bestGeneric != null && (startIdx + bestGeneric.matchLength() > parsedPos)) { in parse()
1242 if (parsedPos > startIdx) { in parse()
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DTimeZoneFormat.java1089 … int parsedPos = -1; // stores successfully parsed offset position for later use in parse() local
1105 parsedPos = tmpPos.getIndex(); in parse()
1201 if (startIdx + match.matchLength() > parsedPos) { in parse()
1203 parsedPos = startIdx + match.matchLength(); in parse()
1208 pos.setIndex(parsedPos); in parse()
1222 if (startIdx + match.matchLength() > parsedPos) { in parse()
1224 parsedPos = startIdx + match.matchLength(); in parse()
1229 pos.setIndex(parsedPos); in parse()
1257 if (bestGeneric != null && (startIdx + bestGeneric.matchLength() > parsedPos)) { in parse()
1303 if (parsedPos > startIdx) { in parse()
[all …]
/external/icu/icu4c/source/i18n/
Dtzfmt.cpp829 …int32_t parsedPos = -1; // stores successfully parsed offset position for later use in parse() local
845 parsedPos = tmpPos.getIndex(); in parse()
954 if (matchPos > parsedPos) { in parse()
956 parsedPos = matchPos; in parse()
987 if (matchPos > parsedPos) { in parse()
989 parsedPos = matchPos; in parse()
1090 if (parsedPos > startIdx) { in parse()
1098 pos.setIndex(parsedPos); in parse()
1108 U_ASSERT(parsedPos < 0); in parse()
1112 if (parsedPos < maxPos && in parse()
[all …]
/external/icu/icu4c/source/test/intltest/
Dnumfmtst.cpp3496 int parsedPos; member
3540 int parsedPosition = DATA[i].parsedPos; in TestSpaceParsing()