Home
last modified time | relevance | path

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

/external/icu4c/i18n/
Ddecimfmt.cpp1856 …int32_t negMatch = compareAffix(text, position, TRUE, TRUE, negPrefix, currencyParsing, type, cur… in subparse() local
1857 if (posMatch >= 0 && negMatch >= 0) { in subparse()
1858 if (posMatch > negMatch) { in subparse()
1859 negMatch = -1; in subparse()
1860 } else if (negMatch > posMatch) { in subparse()
1867 } else if (negMatch >= 0) { in subparse()
1868 position += negMatch; in subparse()
2175 if (posMatch >= 0 || (!strictParse && negMatch < 0)) { in subparse()
2178 if (negMatch >= 0) { in subparse()
2204 …parsedNum.data()[0] = (posSuffixMatch >= 0 || (!strictParse && negMatch < 0 && negSuffixMatch < 0)… in subparse()