Home
last modified time | relevance | path

Searched refs:digitValue (Results 1 – 16 of 16) sorted by relevance

/third_party/libphonenumber/cpp/src/phonenumbers/
Dnormalize_utf8.h35 int32_t digitValue = u_charDigitValue(*it); in NormalizeDecimalDigits() local
36 if (digitValue == -1) { in NormalizeDecimalDigits()
42 normalized.push_back('0' + digitValue); in NormalizeDecimalDigits()
/third_party/icu/tools/unicode/c/genprops/
Dcorepropsbuilder.cpp531 int32_t digitValue=props.digitValue; in setGcAndNumeric() local
533 ((type==U_NT_DECIMAL || type==U_NT_DIGIT) && digitValue<0) in setGcAndNumeric()
546 ntv=UPROPS_NTV_DECIMAL_START+digitValue; in setGcAndNumeric()
549 ntv=UPROPS_NTV_DIGIT_START+digitValue; in setGcAndNumeric()
552 if(digitValue>=0) { in setGcAndNumeric()
553 ntv=UPROPS_NTV_NUMERIC_START+digitValue; in setGcAndNumeric()
/third_party/flutter/skia/third_party/externals/icu/source/tools/toolutil/
Dppucd.cpp46 digitValue(-1), numericValue(NULL), in UniProps()
441 props.digitValue=c-'0'; in parseProperty()
443 props.digitValue=-1; in parseProperty()
Dppucd.h55 int32_t digitValue; member
/third_party/skia/third_party/externals/icu/source/tools/toolutil/
Dppucd.cpp46 digitValue(-1), numericValue(NULL), in UniProps()
441 props.digitValue=c-'0'; in parseProperty()
443 props.digitValue=-1; in parseProperty()
Dppucd.h55 int32_t digitValue; member
/third_party/node/deps/icu-small/source/tools/toolutil/
Dppucd.cpp54 digitValue(-1), numericValue(NULL), in UniProps()
448 props.digitValue=c-'0'; in parseProperty()
450 props.digitValue=-1; in parseProperty()
Dppucd.h55 int32_t digitValue; member
/third_party/icu/icu4c/source/tools/toolutil/
Dppucd.cpp46 digitValue(-1), numericValue(NULL), in UniProps()
441 props.digitValue=c-'0'; in parseProperty()
443 props.digitValue=-1; in parseProperty()
Dppucd.h55 int32_t digitValue; member
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
DTextFormat.java2317 int code = digitValue(c); in unescapeBytes()
2320 code = code * 8 + digitValue(input.byteAt(i)); in unescapeBytes()
2324 code = code * 8 + digitValue(input.byteAt(i)); in unescapeBytes()
2366 code = digitValue(input.byteAt(i)); in unescapeBytes()
2373 code = code * 16 + digitValue(input.byteAt(i)); in unescapeBytes()
2445 private static int digitValue(final byte c) { in digitValue() method in TextFormat
/third_party/icu/icu4c/source/i18n/
Dregexcmp.cpp1021 int32_t digitValue = u_charDigitValue(fC.fChar); in doParseActions() local
1022 U_ASSERT(digitValue >= 0); in doParseActions()
1023 int64_t val = (int64_t)fIntervalLow*10 + digitValue; in doParseActions()
1038 int32_t digitValue = u_charDigitValue(fC.fChar); in doParseActions() local
1039 U_ASSERT(digitValue >= 0); in doParseActions()
1040 int64_t val = (int64_t)fIntervalUpper*10 + digitValue; in doParseActions()
/third_party/node/deps/icu-small/source/i18n/
Dregexcmp.cpp1016 int32_t digitValue = u_charDigitValue(fC.fChar); in doParseActions() local
1017 U_ASSERT(digitValue >= 0); in doParseActions()
1018 int64_t val = (int64_t)fIntervalLow*10 + digitValue; in doParseActions()
1033 int32_t digitValue = u_charDigitValue(fC.fChar); in doParseActions() local
1034 U_ASSERT(digitValue >= 0); in doParseActions()
1035 int64_t val = (int64_t)fIntervalUpper*10 + digitValue; in doParseActions()
/third_party/flutter/skia/third_party/externals/icu/source/i18n/
Dregexcmp.cpp1005 int32_t digitValue = u_charDigitValue(fC.fChar); in doParseActions() local
1006 U_ASSERT(digitValue >= 0); in doParseActions()
1007 int64_t val = (int64_t)fIntervalLow*10 + digitValue; in doParseActions()
1022 int32_t digitValue = u_charDigitValue(fC.fChar); in doParseActions() local
1023 U_ASSERT(digitValue >= 0); in doParseActions()
1024 int64_t val = (int64_t)fIntervalUpper*10 + digitValue; in doParseActions()
/third_party/skia/third_party/externals/icu/source/i18n/
Dregexcmp.cpp1021 int32_t digitValue = u_charDigitValue(fC.fChar); in doParseActions() local
1022 U_ASSERT(digitValue >= 0); in doParseActions()
1023 int64_t val = (int64_t)fIntervalLow*10 + digitValue; in doParseActions()
1038 int32_t digitValue = u_charDigitValue(fC.fChar); in doParseActions() local
1039 U_ASSERT(digitValue >= 0); in doParseActions()
1040 int64_t val = (int64_t)fIntervalUpper*10 + digitValue; in doParseActions()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DAPFloat.cpp441 unsigned int digitValue) { in trailingHexadecimalFraction() argument
446 if (digitValue > 8) in trailingHexadecimalFraction()
448 else if (digitValue < 8 && digitValue > 0) in trailingHexadecimalFraction()
463 return digitValue == 0 ? lfExactlyZero: lfExactlyHalf; in trailingHexadecimalFraction()
465 return digitValue == 0 ? lfLessThanHalf: lfMoreThanHalf; in trailingHexadecimalFraction()