Searched refs:digitValue (Results 1 – 10 of 10) sorted by relevance
35 int32_t digitValue = u_charDigitValue(*it); in NormalizeDecimalDigits() local36 if (digitValue == -1) { in NormalizeDecimalDigits()42 normalized.push_back('0' + digitValue); in NormalizeDecimalDigits()
360 int digitValue = ((groupValue / 10) % 10); in toCJKIdeographic() local361 group[4] = static_cast<AbstractCJKChar>(digit0 + digitValue); in toCJKIdeographic()362 if (digitValue) in toCJKIdeographic()366 int digitValue = ((groupValue / 100) % 10); in toCJKIdeographic() local367 group[2] = static_cast<AbstractCJKChar>(digit0 + digitValue); in toCJKIdeographic()368 if (digitValue) in toCJKIdeographic()372 int digitValue = groupValue / 1000; in toCJKIdeographic() local373 group[0] = static_cast<AbstractCJKChar>(digit0 + digitValue); in toCJKIdeographic()374 if (digitValue) in toCJKIdeographic()
1098 int code = digitValue(c); in unescapeBytes()1101 code = code * 8 + digitValue(input.charAt(i)); in unescapeBytes()1105 code = code * 8 + digitValue(input.charAt(i)); in unescapeBytes()1126 code = digitValue(input.charAt(i)); in unescapeBytes()1133 code = code * 16 + digitValue(input.charAt(i)); in unescapeBytes()1202 private static int digitValue(final char c) { in digitValue() method in TextFormat
1317 int code = digitValue(c); in unescapeBytes()1320 code = code * 8 + digitValue(input.byteAt(i)); in unescapeBytes()1324 code = code * 8 + digitValue(input.byteAt(i)); in unescapeBytes()1346 code = digitValue(input.byteAt(i)); in unescapeBytes()1353 code = code * 16 + digitValue(input.byteAt(i)); in unescapeBytes()1422 private static int digitValue(final byte c) { in digitValue() method in TextFormat
46 digitValue(-1), numericValue(NULL), in UniProps()402 props.digitValue=c-'0'; in parseProperty()404 props.digitValue=-1; in parseProperty()
53 int32_t digitValue; member
997 IntegralType digitValue; in toIntegralType() local1000 digitValue = c - '0'; in toIntegralType()1002 digitValue = c - 'a' + 10; in toIntegralType()1004 digitValue = c - 'A' + 10; in toIntegralType()1006 …if (value > maxMultiplier || (value == maxMultiplier && digitValue > (integralMax % base) + isNega… in toIntegralType()1009 value = base * value + digitValue; in toIntegralType()
1028 int32_t digitValue = u_charDigitValue(fC.fChar); in doParseActions() local1029 U_ASSERT(digitValue >= 0); in doParseActions()1030 fIntervalLow = fIntervalLow*10 + digitValue; in doParseActions()1043 int32_t digitValue = u_charDigitValue(fC.fChar); in doParseActions() local1044 U_ASSERT(digitValue >= 0); in doParseActions()1045 fIntervalUpper = fIntervalUpper*10 + digitValue; in doParseActions()
311 unsigned int digitValue) in trailingHexadecimalFraction() argument317 if (digitValue > 8) in trailingHexadecimalFraction()319 else if (digitValue < 8 && digitValue > 0) in trailingHexadecimalFraction()333 return digitValue == 0 ? lfExactlyZero: lfExactlyHalf; in trailingHexadecimalFraction()335 return digitValue == 0 ? lfLessThanHalf: lfMoreThanHalf; in trailingHexadecimalFraction()
1006 int32_t digitValue = u_charDigitValue(fC.fChar); in doParseActions() local1007 U_ASSERT(digitValue >= 0); in doParseActions()1008 fIntervalLow = fIntervalLow*10 + digitValue; in doParseActions()1021 int32_t digitValue = u_charDigitValue(fC.fChar); in doParseActions() local1022 U_ASSERT(digitValue >= 0); in doParseActions()1023 fIntervalUpper = fIntervalUpper*10 + digitValue; in doParseActions()