Home | History | Annotate | Download | only in js

Lines Matching refs:propertyName

36 bool JSDOMStringMap::canGetItemsForName(ExecState*, DOMStringMap* impl, const Identifier& propertyName)
38 return impl->contains(identifierToAtomicString(propertyName));
41 JSValue JSDOMStringMap::nameGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName)
44 return jsString(exec, thisObj->impl()->item(identifierToAtomicString(propertyName)));
58 bool JSDOMStringMap::deleteProperty(ExecState* exec, const Identifier& propertyName)
64 if (getStaticValueSlot<JSDOMStringMap, Base>(exec, s_info.propHashTable(exec), this, propertyName, slot))
68 if (prototype.isObject() && asObject(prototype)->hasProperty(exec, propertyName))
72 m_impl->deleteItem(identifierToString(propertyName), ec);
78 bool JSDOMStringMap::putDelegate(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot&)
84 if (getStaticValueSlot<JSDOMStringMap, Base>(exec, s_info.propHashTable(exec), this, propertyName, slot))
88 if (prototype.isObject() && asObject(prototype)->hasProperty(exec, propertyName))
96 impl()->setItem(identifierToString(propertyName), stringValue, ec);