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

  /external/chromium_org/third_party/WebKit/Source/platform/
JSONValues.cpp 172 *output = m_doubleValue;
180 *output = static_cast<long>(m_doubleValue);
188 *output = static_cast<int>(m_doubleValue);
196 *output = static_cast<unsigned long>(m_doubleValue);
204 *output = static_cast<unsigned>(m_doubleValue);
218 if (!std::isfinite(m_doubleValue)) {
222 DecimalNumber decimal = m_doubleValue;
JSONValues.h 124 explicit JSONBasicValue(int value) : JSONValue(TypeNumber), m_doubleValue((double)value) { }
125 explicit JSONBasicValue(double value) : JSONValue(TypeNumber), m_doubleValue(value) { }
129 double m_doubleValue;

Completed in 25 milliseconds