Searched refs:negMatch (Results 1 - 3 of 3) sorted by relevance

/external/icu/icu4c/source/i18n/
H A Ddecimfmt.cpp1376 int32_t negMatch = compareAffix(text, position, TRUE, TRUE, negPrefix, complexCurrencyParsing, type, currency); local
1377 if (posMatch >= 0 && negMatch >= 0) {
1378 if (posMatch > negMatch) {
1379 negMatch = -1;
1380 } else if (negMatch > posMatch) {
1387 } else if (negMatch >= 0) {
1388 position += negMatch;
1717 if (posMatch >= 0 || (!strictParse && negMatch < 0)) {
1720 if (negMatch >= 0) {
1747 parsedNum.data()[0] = (posSuffixMatch >= 0 || (!strictParse && negMatch <
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DDecimalFormat_ICU58_Android.java2428 int negMatch = compareAffix(text, position, true, true, negPrefix, parseComplexCurrency, type, currency);
2429 if (posMatch >= 0 && negMatch >= 0) {
2430 if (posMatch > negMatch) {
2431 negMatch = -1;
2432 } else if (negMatch > posMatch) {
2438 } else if (negMatch >= 0) {
2439 position += negMatch;
2767 if (negMatch >= 0) {
2768 negMatch = compareAffix(text, position, true, false, negSuffix, parseComplexCurrency, type, currency);
2770 if (posMatch >= 0 && negMatch >
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DDecimalFormat_ICU58_Android.java2440 int negMatch = compareAffix(text, position, true, true, negPrefix, parseComplexCurrency, type, currency);
2441 if (posMatch >= 0 && negMatch >= 0) {
2442 if (posMatch > negMatch) {
2443 negMatch = -1;
2444 } else if (negMatch > posMatch) {
2450 } else if (negMatch >= 0) {
2451 position += negMatch;
2779 if (negMatch >= 0) {
2780 negMatch = compareAffix(text, position, true, false, negSuffix, parseComplexCurrency, type, currency);
2782 if (posMatch >= 0 && negMatch >
[all...]

Completed in 143 milliseconds