• Home
  • Raw
  • Download

Lines Matching refs:Identifier

88     return getOwnPropertySlot(exec, Identifier::from(exec, propertyName), slot);  in getOwnPropertySlot()
97 void JSObject::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot&… in put()
170 put(exec, Identifier::from(exec, propertyName), value, slot); in put()
173 void JSObject::putWithAttributes(ExecState* exec, const Identifier& propertyName, JSValue value, un… in putWithAttributes()
178 void JSObject::putWithAttributes(ExecState* exec, const Identifier& propertyName, JSValue value, un… in putWithAttributes()
185 putWithAttributes(exec, Identifier::from(exec, propertyName), value, attributes); in putWithAttributes()
188 bool JSObject::hasProperty(ExecState* exec, const Identifier& propertyName) const in hasProperty()
201 bool JSObject::deleteProperty(ExecState* exec, const Identifier& propertyName) in deleteProperty()
221 bool JSObject::hasOwnProperty(ExecState* exec, const Identifier& propertyName) const in hasOwnProperty()
229 return deleteProperty(exec, Identifier::from(exec, propertyName)); in deleteProperty()
232 …e callDefaultValueFunction(ExecState* exec, const JSObject* object, const Identifier& propertyName) in callDefaultValueFunction()
286 const HashEntry* JSObject::findPropertyHashEntry(ExecState* exec, const Identifier& propertyName) c… in findPropertyHashEntry()
297 void JSObject::defineGetter(ExecState* exec, const Identifier& propertyName, JSObject* getterFuncti… in defineGetter()
324 void JSObject::defineSetter(ExecState* exec, const Identifier& propertyName, JSObject* setterFuncti… in defineSetter()
351 JSValue JSObject::lookupGetter(ExecState*, const Identifier& propertyName) in lookupGetter()
370 JSValue JSObject::lookupSetter(ExecState*, const Identifier& propertyName) in lookupSetter()
407 bool JSObject::propertyIsEnumerable(ExecState* exec, const Identifier& propertyName) const in propertyIsEnumerable()
415 bool JSObject::getPropertySpecificValue(ExecState*, const Identifier& propertyName, JSCell*& specif… in getPropertySpecificValue()
491 void JSObject::removeDirect(const Identifier& propertyName) in removeDirect()
509 putDirectFunction(Identifier(exec, function->name(exec)), function, attr); in putDirectFunction()
514 putDirectFunctionWithoutTransition(Identifier(exec, function->name(exec)), function, attr); in putDirectFunctionWithoutTransition()
536 bool JSObject::getOwnPropertyDescriptor(ExecState*, const Identifier& propertyName, PropertyDescrip… in getOwnPropertyDescriptor()
547 bool JSObject::getPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescr… in getPropertyDescriptor()
560 static bool putDescriptor(ExecState* exec, JSObject* target, const Identifier& propertyName, Proper… in putDescriptor()
576 bool JSObject::defineOwnProperty(ExecState* exec, const Identifier& propertyName, PropertyDescripto… in defineOwnProperty()