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 197 *output = m_doubleValue;
205 *output = static_cast<long>(m_doubleValue);
213 *output = static_cast<int>(m_doubleValue);
221 *output = static_cast<unsigned long>(m_doubleValue);
229 *output = static_cast<unsigned>(m_doubleValue);
242 if (!std::isfinite(m_doubleValue)) {
246 output->append(Decimal::fromDouble(m_doubleValue).toString());
JSONValues.h 130 explicit JSONBasicValue(int value) : JSONValue(TypeNumber), m_doubleValue((double)value) { }
131 explicit JSONBasicValue(double value) : JSONValue(TypeNumber), m_doubleValue(value) { }
135 double m_doubleValue;

Completed in 46 milliseconds