Home | History | Annotate | Download | only in inspector

Lines Matching refs:propertyName

56     bool getBoolean(const String& propertyName);
57 String getString(const String& propertyName);
58 long getLong(const String& propertyName);
59 PassRefPtr<InspectorObject> getObject(const String& propertyName);
61 void setBoolean(const String& propertyName, bool value) { setValue(propertyName, InspectorBasicValue::create(value)); }
62 void setString(const String& propertyName, const String& value) { setValue(propertyName, InspectorString::create(value)); }
63 void setLong(const String& propertyName, long value) { setValue(propertyName, InspectorBasicValue::create((double)value)); }
64 void setObject(const String& propertyName, PassRefPtr<InspectorObject> value) { setValue(propertyName, value); }
68 void setValue(const String& propertyName, PassRefPtr<InspectorValue>);