Searched refs:InspectorBasicValue (Results 1 – 7 of 7) sorted by relevance
97 class InspectorBasicValue : public InspectorValue {100 static PassRefPtr<InspectorBasicValue> create(bool value) in create()102 return adoptRef(new InspectorBasicValue(value)); in create()105 static PassRefPtr<InspectorBasicValue> create(int value) in create()107 return adoptRef(new InspectorBasicValue(value)); in create()110 static PassRefPtr<InspectorBasicValue> create(double value) in create()112 return adoptRef(new InspectorBasicValue(value)); in create()125 explicit InspectorBasicValue(bool value) : InspectorValue(TypeBoolean), m_boolValue(value) { } in InspectorBasicValue() function126 …explicit InspectorBasicValue(int value) : InspectorValue(TypeNumber), m_doubleValue((double)value)… in InspectorBasicValue() function127 … explicit InspectorBasicValue(double value) : InspectorValue(TypeNumber), m_doubleValue(value) { } in InspectorBasicValue() function[all …]
342 result = InspectorBasicValue::create(true); in buildValue()345 result = InspectorBasicValue::create(false); in buildValue()352 result = InspectorBasicValue::create(value); in buildValue()565 bool InspectorBasicValue::asBoolean(bool* output) const in asBoolean()573 bool InspectorBasicValue::asNumber(double* output) const in asNumber()581 bool InspectorBasicValue::asNumber(long* output) const in asNumber()589 bool InspectorBasicValue::asNumber(int* output) const in asNumber()597 bool InspectorBasicValue::asNumber(unsigned long* output) const in asNumber()605 bool InspectorBasicValue::asNumber(unsigned int* output) const in asNumber()613 void InspectorBasicValue::writeJSON(Vector<UChar>* output) const in writeJSON()
61 …n(const String& propertyName, bool value) { setValue(propertyName, InspectorBasicValue::create(val… in setBoolean()63 …g(const String& propertyName, long value) { setValue(propertyName, InspectorBasicValue::create((do… in setLong()
85 return InspectorBasicValue::create(value->BooleanValue()); in v8ToInspectorValue()87 return InspectorBasicValue::create(value->NumberValue()); in v8ToInspectorValue()
123 return InspectorBasicValue::create(value.getBoolean()); in jsToInspectorValue()125 return InspectorBasicValue::create(value.uncheckedGetNumber()); in jsToInspectorValue()
29627 DecimalNumber, and pass the buffer size in InspectorBasicValue.29634 (WebCore::InspectorBasicValue::writeJSON):31473 (WebCore::InspectorBasicValue::writeJSON):70599 (WebCore::InspectorBasicValue::asBoolean):70600 (WebCore::InspectorBasicValue::asNumber):70601 (WebCore::InspectorBasicValue::writeJSON):70605 (WebCore::InspectorBasicValue::InspectorBasicValue):86090 (WebCore::InspectorBasicValue::asNumber):96026 (WebCore::InspectorBasicValue::writeJSON):127336 (WebCore::InspectorBasicValue::asBool):[all …]
9410 (WebCore::InspectorBasicValue::asNumber):