Home | History | Annotate | Download | only in runtime

Lines Matching refs:propertyName

33         virtual bool getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
37 return JSArray::getOwnPropertySlot(exec, propertyName, slot);
40 virtual bool getOwnPropertySlot(ExecState* exec, unsigned propertyName, PropertySlot& slot)
44 return JSArray::getOwnPropertySlot(exec, propertyName, slot);
47 virtual bool getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
51 return JSArray::getOwnPropertyDescriptor(exec, propertyName, descriptor);
54 virtual void put(ExecState* exec, const Identifier& propertyName, JSValue v, PutPropertySlot& slot)
58 JSArray::put(exec, propertyName, v, slot);
61 virtual void put(ExecState* exec, unsigned propertyName, JSValue v)
65 JSArray::put(exec, propertyName, v);
68 virtual bool deleteProperty(ExecState* exec, const Identifier& propertyName)
72 return JSArray::deleteProperty(exec, propertyName);
75 virtual bool deleteProperty(ExecState* exec, unsigned propertyName)
79 return JSArray::deleteProperty(exec, propertyName);