Home
last modified time | relevance | path

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

/external/webkit/WebCore/rendering/
DRenderListMarker.cpp332 int digitValue = ((groupValue / 10) % 10); in toCJKIdeographic() local
333 group[4] = static_cast<AbstractCJKChar>(digit0 + digitValue); in toCJKIdeographic()
334 if (digitValue) in toCJKIdeographic()
338 int digitValue = ((groupValue / 100) % 10); in toCJKIdeographic() local
339 group[2] = static_cast<AbstractCJKChar>(digit0 + digitValue); in toCJKIdeographic()
340 if (digitValue) in toCJKIdeographic()
344 int digitValue = groupValue / 1000; in toCJKIdeographic() local
345 group[0] = static_cast<AbstractCJKChar>(digit0 + digitValue); in toCJKIdeographic()
346 if (digitValue) in toCJKIdeographic()
/external/webkit/JavaScriptCore/wtf/unicode/wince/
DUnicodeWince.cpp170 int digitValue(wchar_t c) in digitValue() function
172 return UnicodeCE::digitValue(c); in digitValue()
DUnicodeWince.h179 int digitValue(wchar_t);
/external/webkit/WebCore/platform/text/
DString.cpp773 IntegralType digitValue; in toIntegralType() local
776 digitValue = c - '0'; in toIntegralType()
778 digitValue = c - 'a' + 10; in toIntegralType()
780 digitValue = c - 'A' + 10; in toIntegralType()
782 …if (value > maxMultiplier || (value == maxMultiplier && digitValue > (integralMax % base) + isNega… in toIntegralType()
785 value = base * value + digitValue; in toIntegralType()
/external/protobuf/java/src/main/java/com/google/protobuf/
DTextFormat.java1098 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
/external/webkit/JavaScriptCore/wtf/unicode/glib/
DUnicodeGLib.h219 inline int digitValue(UChar32 c) in digitValue() function
/external/chromium/third_party/icu/source/i18n/
Dregexcmp.cpp998 int32_t digitValue = u_charDigitValue(fC.fChar); in doParseActions() local
999 U_ASSERT(digitValue >= 0); in doParseActions()
1000 fIntervalLow = fIntervalLow*10 + digitValue; in doParseActions()
1013 int32_t digitValue = u_charDigitValue(fC.fChar); in doParseActions() local
1014 U_ASSERT(digitValue >= 0); in doParseActions()
1015 fIntervalUpper = fIntervalUpper*10 + digitValue; in doParseActions()
/external/icu4c/i18n/
Dregexcmp.cpp1005 int32_t digitValue = u_charDigitValue(fC.fChar); in doParseActions() local
1006 U_ASSERT(digitValue >= 0); in doParseActions()
1007 fIntervalLow = fIntervalLow*10 + digitValue; in doParseActions()
1020 int32_t digitValue = u_charDigitValue(fC.fChar); in doParseActions() local
1021 U_ASSERT(digitValue >= 0); in doParseActions()
1022 fIntervalUpper = fIntervalUpper*10 + digitValue; in doParseActions()
/external/webkit/JavaScriptCore/wtf/unicode/qt4/
DUnicodeQt4.h41 signed short digitValue : 6; /* 5 needed */ member
/external/webkit/JavaScriptCore/
DChangeLog-2007-10-145506 (WTF::Unicode::digitValue):
6208 (WTF::Unicode::digitValue):
6223 (WTF::Unicode::digitValue):
DChangeLog-2009-06-161907 (WTF::Unicode::digitValue):
29361 * wtf/unicode/icu/UnicodeIcu.h: Removed isDigit, digitValue, and isFormatChar.
DChangeLog14062 (WTF::Unicode::digitValue):
/external/webkit/WebCore/
DChangeLog-2006-05-10283 and QChar::digitValue. Also removed unneeded range checking that's already done
322 isDigit, isLetter, isNumber, isLetterOrNumber, isPunct, digitValue, and direction functions.
DChangeLog-2005-08-2316227 … (QChar::digitValue): Changed to call u_charDigitValue when not '0'-'9'. We should probably phase
51094 (QChar::digitValue): Ditto.