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

  /external/chromium_org/third_party/WebKit/Source/platform/
JSONValues.h 101 class PLATFORM_EXPORT JSONBasicValue : public JSONValue {
104 static PassRefPtr<JSONBasicValue> create(bool value)
106 return adoptRef(new JSONBasicValue(value));
109 static PassRefPtr<JSONBasicValue> create(int value)
111 return adoptRef(new JSONBasicValue(value));
114 static PassRefPtr<JSONBasicValue> create(double value)
116 return adoptRef(new JSONBasicValue(value));
129 explicit JSONBasicValue(bool value) : JSONValue(TypeBoolean), m_boolValue(value) { }
130 explicit JSONBasicValue(int value) : JSONValue(TypeNumber), m_doubleValue((double)value) { }
131 explicit JSONBasicValue(double value) : JSONValue(TypeNumber), m_doubleValue(value) {
    [all...]
JSONValues.cpp 185 bool JSONBasicValue::asBoolean(bool* output) const
193 bool JSONBasicValue::asNumber(double* output) const
201 bool JSONBasicValue::asNumber(long* output) const
209 bool JSONBasicValue::asNumber(int* output) const
217 bool JSONBasicValue::asNumber(unsigned long* output) const
225 bool JSONBasicValue::asNumber(unsigned* output) const
233 void JSONBasicValue::writeJSON(StringBuilder* output) const
280 setValue(name, JSONBasicValue::create(value));
285 setValue(name, JSONBasicValue::create(value));
487 m_data.append(JSONBasicValue::create(value))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorState.h 68 void setBoolean(const String& propertyName, bool value) { setValue(propertyName, JSONBasicValue::create(value)); }
70 void setLong(const String& propertyName, long value) { setValue(propertyName, JSONBasicValue::create((double)value)); }
71 void setDouble(const String& propertyName, double value) { setValue(propertyName, JSONBasicValue::create(value)); }
JSONParser.cpp 357 result = JSONBasicValue::create(true);
360 result = JSONBasicValue::create(false);
367 result = JSONBasicValue::create(value);
InspectorOverlay.cpp 529 m_path->addItem(JSONBasicValue::create(point.x()));
530 m_path->addItem(JSONBasicValue::create(point.y()));
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
InspectorDatabaseAgent.cpp 100 case SQLValue::NumberValue: values->addItem(JSONBasicValue::create(value.number())); break;
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
V8Binding.cpp 898 return JSONBasicValue::create(value->BooleanValue());
900 return JSONBasicValue::create(value->NumberValue());
    [all...]

Completed in 1786 milliseconds