/third_party/libphonenumber/cpp/src/phonenumbers/ |
D | normalize_utf8.h | 35 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/ |
D | corepropsbuilder.cpp | 531 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/ |
D | ppucd.cpp | 46 digitValue(-1), numericValue(NULL), in UniProps() 441 props.digitValue=c-'0'; in parseProperty() 443 props.digitValue=-1; in parseProperty()
|
D | ppucd.h | 55 int32_t digitValue; member
|
/third_party/skia/third_party/externals/icu/source/tools/toolutil/ |
D | ppucd.cpp | 46 digitValue(-1), numericValue(NULL), in UniProps() 441 props.digitValue=c-'0'; in parseProperty() 443 props.digitValue=-1; in parseProperty()
|
D | ppucd.h | 55 int32_t digitValue; member
|
/third_party/node/deps/icu-small/source/tools/toolutil/ |
D | ppucd.cpp | 54 digitValue(-1), numericValue(NULL), in UniProps() 448 props.digitValue=c-'0'; in parseProperty() 450 props.digitValue=-1; in parseProperty()
|
D | ppucd.h | 55 int32_t digitValue; member
|
/third_party/icu/icu4c/source/tools/toolutil/ |
D | ppucd.cpp | 46 digitValue(-1), numericValue(NULL), in UniProps() 441 props.digitValue=c-'0'; in parseProperty() 443 props.digitValue=-1; in parseProperty()
|
D | ppucd.h | 55 int32_t digitValue; member
|
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
D | TextFormat.java | 2317 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/ |
D | regexcmp.cpp | 1021 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/ |
D | regexcmp.cpp | 1016 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/ |
D | regexcmp.cpp | 1005 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/ |
D | regexcmp.cpp | 1021 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/ |
D | APFloat.cpp | 441 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()
|