Searched refs:negSuffixMatch (Results 1 – 1 of 1) sorted by relevance
2610 int32_t posSuffixMatch = -1, negSuffixMatch = -1; in subparse() local2617 …negSuffixMatch = 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()