Lines Matching refs:negMatch
1483 int32_t negMatch = compareAffix(text, position, TRUE, TRUE, currency); in subparse() local
1484 if (posMatch >= 0 && negMatch >= 0) { in subparse()
1485 if (posMatch > negMatch) { in subparse()
1486 negMatch = -1; in subparse()
1487 } else if (negMatch > posMatch) { in subparse()
1493 } else if (negMatch >= 0) { in subparse()
1494 position += negMatch; in subparse()
1700 if (negMatch >= 0) { in subparse()
1701 negMatch = compareAffix(text, position, TRUE, FALSE, currency); in subparse()
1703 if (posMatch >= 0 && negMatch >= 0) { in subparse()
1704 if (posMatch > negMatch) { in subparse()
1705 negMatch = -1; in subparse()
1706 } else if (negMatch > posMatch) { in subparse()
1712 if ((posMatch >= 0) == (negMatch >= 0)) { in subparse()
1717 position += (posMatch>=0 ? posMatch : negMatch); in subparse()