Home
last modified time | relevance | path

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

/external/icu4c/i18n/
Ddecimfmt.cpp2610 int32_t posSuffixMatch = -1, negSuffixMatch = -1; in subparse() local
2617negSuffixMatch = compareAffix(text, position, TRUE, FALSE, negSuffix, currencyParsing, type, curre… in subparse()
2619 if (posSuffixMatch >= 0 && negSuffixMatch >= 0) { in subparse()
2620 if (posSuffixMatch > negSuffixMatch) { in subparse()
2621 negSuffixMatch = -1; in subparse()
2622 } else if (negSuffixMatch > posSuffixMatch) { in subparse()
2628 if (strictParse && ((posSuffixMatch >= 0) == (negSuffixMatch >= 0))) { in subparse()
2634 position += (posSuffixMatch >= 0 ? posSuffixMatch : (negSuffixMatch >= 0 ? negSuffixMatch : 0)); in subparse()
2643 …parsedNum.data()[0] = (posSuffixMatch >= 0 || (!strictParse && negMatch < 0 && negSuffixMatch < 0)… in subparse()