Home | History | Annotate | Download | only in i18n

Lines Matching refs:negMatch

1361     int32_t negMatch = compareAffix(text, position, TRUE,  TRUE, negPrefix, complexCurrencyParsing, type, currency);
1362 if (posMatch >= 0 && negMatch >= 0) {
1363 if (posMatch > negMatch) {
1364 negMatch = -1;
1365 } else if (negMatch > posMatch) {
1372 } else if (negMatch >= 0) {
1373 position += negMatch;
1700 if (posMatch >= 0 || (!strictParse && negMatch < 0)) {
1703 if (negMatch >= 0) {
1730 parsedNum.data()[0] = (posSuffixMatch >= 0 || (!strictParse && negMatch < 0 && negSuffixMatch < 0)) ? '+' : '-';