/third_party/node/deps/icu-small/source/common/unicode/ |
D | parsepos.h | 61 errorIndex(-1) in ParsePosition() 72 errorIndex(-1) in ParsePosition() 83 errorIndex(copy.errorIndex) in ParsePosition() 183 int32_t errorIndex; variable 191 errorIndex = copy.errorIndex; 198 if(index != copy.index || errorIndex != copy.errorIndex) 225 return errorIndex; in getErrorIndex() 231 this->errorIndex = ei; in setErrorIndex()
|
/third_party/skia/third_party/externals/icu/source/common/unicode/ |
D | parsepos.h | 61 errorIndex(-1) in ParsePosition() 72 errorIndex(-1) in ParsePosition() 83 errorIndex(copy.errorIndex) in ParsePosition() 183 int32_t errorIndex; variable 191 errorIndex = copy.errorIndex; 198 if(index != copy.index || errorIndex != copy.errorIndex) 225 return errorIndex; in getErrorIndex() 231 this->errorIndex = ei; in setErrorIndex()
|
/third_party/icu/icu4c/source/common/unicode/ |
D | parsepos.h | 61 errorIndex(-1) in ParsePosition() 72 errorIndex(-1) in ParsePosition() 83 errorIndex(copy.errorIndex) in ParsePosition() 183 int32_t errorIndex; variable 191 errorIndex = copy.errorIndex; 198 if(index != copy.index || errorIndex != copy.errorIndex) 225 return errorIndex; in getErrorIndex() 231 this->errorIndex = ei; in setErrorIndex()
|
/third_party/flutter/skia/third_party/externals/icu/source/common/unicode/ |
D | parsepos.h | 58 errorIndex(-1) in ParsePosition() 69 errorIndex(-1) in ParsePosition() 80 errorIndex(copy.errorIndex) in ParsePosition() 180 int32_t errorIndex; variable 188 errorIndex = copy.errorIndex; 195 if(index != copy.index || errorIndex != copy.errorIndex) 222 return errorIndex; in getErrorIndex() 228 this->errorIndex = ei; in setErrorIndex()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/ |
D | IllformedLocaleException.java | 52 public IllformedLocaleException(String message, int errorIndex) { in IllformedLocaleException() argument 53 super(message + ((errorIndex < 0) ? "" : " [at index " + errorIndex + "]")); in IllformedLocaleException() 54 _errIdx = errorIndex; in IllformedLocaleException()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
D | IllformedLocaleException.java | 55 public IllformedLocaleException(String message, int errorIndex) { in IllformedLocaleException() argument 56 super(message + ((errorIndex < 0) ? "" : " [at index " + errorIndex + "]")); in IllformedLocaleException() 57 _errIdx = errorIndex; in IllformedLocaleException()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/ |
D | LocaleSyntaxException.java | 21 public LocaleSyntaxException(String msg, int errorIndex) { in LocaleSyntaxException() argument 23 _index = errorIndex; in LocaleSyntaxException()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/locale/ |
D | LocaleSyntaxException.java | 25 public LocaleSyntaxException(String msg, int errorIndex) { in LocaleSyntaxException() argument 27 _index = errorIndex; in LocaleSyntaxException()
|
/third_party/libphonenumber/tools/java/common/src/com/google/i18n/phonenumbers/ |
D | BuildMetadataFromXml.java | 177 int errorIndex = compressedRegex.indexOf("|)"); in validateRE() local 178 if (errorIndex >= 0) { in validateRE() 181 throw new PatternSyntaxException("| followed by )", compressedRegex, errorIndex); in validateRE()
|
/third_party/flutter/skia/third_party/externals/icu/source/i18n/ |
D | rbnf.cpp | 1415 int32_t errorIndex = (high_pp.getErrorIndex()>0)? high_pp.getErrorIndex(): 0; in parse() local 1416 parsePosition.setErrorIndex(startIndex + errorIndex); in parse()
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
D | rbnf.cpp | 1382 int32_t errorIndex = (high_pp.getErrorIndex()>0)? high_pp.getErrorIndex(): 0; in parse() local 1383 parsePosition.setErrorIndex(startIndex + errorIndex); in parse()
|
/third_party/icu/icu4c/source/i18n/ |
D | rbnf.cpp | 1382 int32_t errorIndex = (high_pp.getErrorIndex()>0)? high_pp.getErrorIndex(): 0; in parse() local 1383 parsePosition.setErrorIndex(startIndex + errorIndex); in parse()
|
/third_party/node/deps/icu-small/source/i18n/ |
D | rbnf.cpp | 1382 int32_t errorIndex = (high_pp.getErrorIndex()>0)? high_pp.getErrorIndex(): 0; in parse() local 1383 parsePosition.setErrorIndex(startIndex + errorIndex); in parse()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
D | NumberFormatTest.java | 468 int errorIndex = Integer.parseInt(DATA[i][2]); in TestSpaceParsing() local 472 parsePosition.getErrorIndex() != errorIndex) { in TestSpaceParsing() 847 int errorIndex = Integer.parseInt(DATA[i][2]); in TestMiscCurrencyParsing() local 854 parsePosition.getErrorIndex() != errorIndex) { in TestMiscCurrencyParsing() 856 …errln("FAIL: parse failed on case "+i+". expected error position: " + errorIndex + "; actual: " + … in TestMiscCurrencyParsing()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/ |
D | NumberFormatTest.java | 471 int errorIndex = Integer.parseInt(DATA[i][2]); in TestSpaceParsing() local 475 parsePosition.getErrorIndex() != errorIndex) { in TestSpaceParsing() 850 int errorIndex = Integer.parseInt(DATA[i][2]); in TestMiscCurrencyParsing() local 857 parsePosition.getErrorIndex() != errorIndex) { in TestMiscCurrencyParsing() 859 …errln("FAIL: parse failed on case "+i+". expected error position: " + errorIndex + "; actual: " + … in TestMiscCurrencyParsing()
|
/third_party/icu/icu4c/source/test/intltest/ |
D | numfmtst.cpp | 3464 int errorIndex; member 3504 int errorIndex = DATA[i].errorIndex; in TestSpaceParsing() local 3510 parsePosition.getErrorIndex() != errorIndex) { in TestSpaceParsing() 3511 …i].lenient + "; wrong position, expected: (" + parsedPosition + ", " + errorIndex + "); got (" + p… in TestSpaceParsing()
|