Lines Matching refs:exec

40 JSValue JSNotAnObject::toPrimitive(ExecState* exec, PreferredPrimitiveType) const
42 ASSERT_UNUSED(exec, exec->hadException());
46 bool JSNotAnObject::getPrimitiveNumber(ExecState* exec, double&, JSValue&)
48 ASSERT_UNUSED(exec, exec->hadException());
52 bool JSNotAnObject::toBoolean(ExecState* exec) const
54 ASSERT_UNUSED(exec, exec->hadException());
58 double JSNotAnObject::toNumber(ExecState* exec) const
60 ASSERT_UNUSED(exec, exec->hadException());
64 UString JSNotAnObject::toString(ExecState* exec) const
66 ASSERT_UNUSED(exec, exec->hadException());
70 JSObject* JSNotAnObject::toObject(ExecState* exec, JSGlobalObject*) const
72 ASSERT_UNUSED(exec, exec->hadException());
77 bool JSNotAnObject::getOwnPropertySlot(ExecState* exec, const Identifier&, PropertySlot&)
79 ASSERT_UNUSED(exec, exec->hadException());
83 bool JSNotAnObject::getOwnPropertySlot(ExecState* exec, unsigned, PropertySlot&)
85 ASSERT_UNUSED(exec, exec->hadException());
89 bool JSNotAnObject::getOwnPropertyDescriptor(ExecState* exec, const Identifier&, PropertyDescriptor&)
91 ASSERT_UNUSED(exec, exec->hadException());
95 void JSNotAnObject::put(ExecState* exec, const Identifier& , JSValue, PutPropertySlot&)
97 ASSERT_UNUSED(exec, exec->hadException());
100 void JSNotAnObject::put(ExecState* exec, unsigned, JSValue)
102 ASSERT_UNUSED(exec, exec->hadException());
105 bool JSNotAnObject::deleteProperty(ExecState* exec, const Identifier&)
107 ASSERT_UNUSED(exec, exec->hadException());
111 bool JSNotAnObject::deleteProperty(ExecState* exec, unsigned)
113 ASSERT_UNUSED(exec, exec->hadException());
117 void JSNotAnObject::getOwnPropertyNames(ExecState* exec, PropertyNameArray&, EnumerationMode)
119 ASSERT_UNUSED(exec, exec->hadException());