Searched refs:posSuffixMatch (Results 1 – 1 of 1) sorted by relevance
2172 int32_t posSuffixMatch = -1, negSuffixMatch = -1; in subparse() local2176 …posSuffixMatch = compareAffix(text, position, FALSE, FALSE, posSuffix, currencyParsing, type, curr… in subparse()2181 if (posSuffixMatch >= 0 && negSuffixMatch >= 0) { in subparse()2182 if (posSuffixMatch > negSuffixMatch) { in subparse()2184 } else if (negSuffixMatch > posSuffixMatch) { in subparse()2185 posSuffixMatch = -1; in subparse()2190 if (strictParse && ((posSuffixMatch >= 0) == (negSuffixMatch >= 0))) { in subparse()2195 position += (posSuffixMatch >= 0 ? posSuffixMatch : (negSuffixMatch >= 0 ? negSuffixMatch : 0)); in subparse()2204 …parsedNum.data()[0] = (posSuffixMatch >= 0 || (!strictParse && negMatch < 0 && negSuffixMatch < 0)… in subparse()