HomeSort by relevance Sort by last modified time
    Searched refs:defineOwnProperty (Results 1 - 7 of 7) sorted by null

  /external/webkit/Source/WebCore/bindings/js/
JSDOMWindowShell.cpp 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);
JSDOMWindowShell.h 82 virtual bool defineOwnProperty(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::PropertyDescriptor&, bool shouldThrow);
JSDOMWindowCustom.cpp 416 bool JSDOMWindow::defineOwnProperty(JSC::ExecState* exec, const JSC::Identifier& propertyName, JSC::PropertyDescriptor& descriptor, bool shouldThrow)
421 return Base::defineOwnProperty(exec, propertyName, descriptor, shouldThrow);
  /external/webkit/Source/JavaScriptCore/runtime/
Arguments.cpp 166 defineOwnProperty(exec, exec->propertyNames().caller, descriptor, false);
178 defineOwnProperty(exec, exec->propertyNames().callee, descriptor, false);
ObjectConstructor.cpp 293 O->defineOwnProperty(exec, Identifier(exec, propertyName), descriptor, true);
324 object->defineOwnProperty(exec, propertyNames[i], descriptors[i], true);
JSObject.cpp 656 bool JSObject::defineOwnProperty(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor, bool throwException)
JSObject.h 204 virtual bool defineOwnProperty(ExecState*, const Identifier& propertyName, PropertyDescriptor&, bool shouldThrow);
    [all...]

Completed in 600 milliseconds