Lines Matching refs:posMatch
1482 int32_t posMatch = compareAffix(text, position, FALSE, TRUE, currency); in subparse() local
1484 if (posMatch >= 0 && negMatch >= 0) { in subparse()
1485 if (posMatch > negMatch) { in subparse()
1487 } else if (negMatch > posMatch) { in subparse()
1488 posMatch = -1; in subparse()
1491 if (posMatch >= 0) { in subparse()
1492 position += posMatch; in subparse()
1697 if (posMatch >= 0) { in subparse()
1698 posMatch = compareAffix(text, position, FALSE, FALSE, currency); in subparse()
1703 if (posMatch >= 0 && negMatch >= 0) { in subparse()
1704 if (posMatch > negMatch) { in subparse()
1706 } else if (negMatch > posMatch) { in subparse()
1707 posMatch = -1; in subparse()
1712 if ((posMatch >= 0) == (negMatch >= 0)) { in subparse()
1717 position += (posMatch>=0 ? posMatch : negMatch); in subparse()
1726 digits.fIsPositive = (posMatch >= 0); in subparse()