Home
last modified time | relevance | path

Searched defs:JSONBasicValue (Results 1 – 1 of 1) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/
DJSONValues.h129 explicit JSONBasicValue(bool value) : JSONValue(TypeBoolean), m_boolValue(value) { } in JSONBasicValue() function
130 explicit JSONBasicValue(int value) : JSONValue(TypeNumber), m_doubleValue((double)value) { } in JSONBasicValue() function
131 explicit JSONBasicValue(double value) : JSONValue(TypeNumber), m_doubleValue(value) { } in JSONBasicValue() function