HomeSort by relevance Sort by last modified time
    Searched refs:NumberToStringBufferLength (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/WebKit/Source/wtf/
dtoa.h 42 const unsigned NumberToStringBufferLength = 96;
43 typedef char NumberToStringBuffer[NumberToStringBufferLength];
44 typedef LChar NumberToLStringBuffer[NumberToStringBufferLength];
dtoa.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/
JSONValues.cpp 224 if (decimal.bufferLengthForStringDecimal() > WTF::NumberToStringBufferLength) {
226 if (decimal.bufferLengthForStringExponential() > WTF::NumberToStringBufferLength) {
231 length = decimal.toStringExponential(buffer, WTF::NumberToStringBufferLength);
233 length = decimal.toStringDecimal(buffer, WTF::NumberToStringBufferLength);
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
Color.cpp 211 unsigned length = DecimalNumber(alpha() / 255.0).toStringDecimal(buffer, WTF::NumberToStringBufferLength);

Completed in 116 milliseconds