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

/external/chromium_org/third_party/WebKit/Source/core/platform/
H A DJSONValues.h94 class JSONBasicValue : public JSONValue { class in namespace:WebCore
97 static PassRefPtr<JSONBasicValue> create(bool value)
99 return adoptRef(new JSONBasicValue(value));
102 static PassRefPtr<JSONBasicValue> create(int value)
104 return adoptRef(new JSONBasicValue(value));
107 static PassRefPtr<JSONBasicValue> create(double value)
109 return adoptRef(new JSONBasicValue(value));
122 explicit JSONBasicValue(bool value) : JSONValue(TypeBoolean), m_boolValue(value) { } function in class:WebCore::JSONBasicValue
123 explicit JSONBasicValue(int value) : JSONValue(TypeNumber), m_doubleValue((double)value) { } function in class:WebCore::JSONBasicValue
124 explicit JSONBasicValue(doubl function in class:WebCore::JSONBasicValue
[all...]

Completed in 701 milliseconds