Lines Matching refs:propertyName

88 bool JSDOMWindowShell::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
90 return m_window->getOwnPropertySlot(exec, propertyName, slot);
93 bool JSDOMWindowShell::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
95 return m_window->getOwnPropertyDescriptor(exec, propertyName, descriptor);
98 void JSDOMWindowShell::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot)
100 m_window->put(exec, propertyName, value, slot);
103 void JSDOMWindowShell::putWithAttributes(ExecState* exec, const Identifier& propertyName, JSValue value, unsigned attributes)
105 m_window->putWithAttributes(exec, propertyName, value, attributes);
108 bool JSDOMWindowShell::defineOwnProperty(JSC::ExecState* exec, const JSC::Identifier& propertyName, JSC::PropertyDescriptor& descriptor, bool shouldThrow)
110 return m_window->defineOwnProperty(exec, propertyName, descriptor, shouldThrow);
113 bool JSDOMWindowShell::deleteProperty(ExecState* exec, const Identifier& propertyName)
115 return m_window->deleteProperty(exec, propertyName);
128 void JSDOMWindowShell::defineGetter(ExecState* exec, const Identifier& propertyName, JSObject* getterFunction, unsigned attributes)
130 m_window->defineGetter(exec, propertyName, getterFunction, attributes);
133 void JSDOMWindowShell::defineSetter(ExecState* exec, const Identifier& propertyName, JSObject* setterFunction, unsigned attributes)
135 m_window->defineSetter(exec, propertyName, setterFunction, attributes);
138 JSValue JSDOMWindowShell::lookupGetter(ExecState* exec, const Identifier& propertyName)
140 return m_window->lookupGetter(exec, propertyName);
143 JSValue JSDOMWindowShell::lookupSetter(ExecState* exec, const Identifier& propertyName)
145 return m_window->lookupSetter(exec, propertyName);