• Home
  • Raw
  • Download

Lines Matching refs:Identifier

94         JSValue get(ExecState*, const Identifier& propertyName) const;
97 bool getPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot&);
99 bool getPropertyDescriptor(ExecState*, const Identifier& propertyName, PropertyDescriptor&);
101 virtual bool getOwnPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot&);
103 virtual bool getOwnPropertyDescriptor(ExecState*, const Identifier&, PropertyDescriptor&);
105 … virtual void put(ExecState*, const Identifier& propertyName, JSValue value, PutPropertySlot&);
108 …virtual void putWithAttributes(ExecState*, const Identifier& propertyName, JSValue value, unsigned…
109 …virtual void putWithAttributes(ExecState*, const Identifier& propertyName, JSValue value, unsigned…
112 bool propertyIsEnumerable(ExecState*, const Identifier& propertyName) const;
114 bool hasProperty(ExecState*, const Identifier& propertyName) const;
116 bool hasOwnProperty(ExecState*, const Identifier& propertyName) const;
118 virtual bool deleteProperty(ExecState*, const Identifier& propertyName);
138 …bool getPropertySpecificValue(ExecState* exec, const Identifier& propertyName, JSCell*& specificFu…
141 JSValue getDirect(const Identifier& propertyName) const in getDirect()
147 JSValue* getDirectLocation(const Identifier& propertyName) in getDirectLocation()
153 JSValue* getDirectLocation(const Identifier& propertyName, unsigned& attributes) in getDirectLocation()
167 void removeDirect(const Identifier& propertyName);
171 …void putDirect(const Identifier& propertyName, JSValue value, unsigned attr, bool checkReadOnly, P…
172 void putDirect(const Identifier& propertyName, JSValue value, unsigned attr = 0);
174 void putDirectFunction(const Identifier& propertyName, JSCell* value, unsigned attr = 0);
175 …void putDirectFunction(const Identifier& propertyName, JSCell* value, unsigned attr, bool checkRea…
178 … void putDirectWithoutTransition(const Identifier& propertyName, JSValue value, unsigned attr = 0);
179 …void putDirectFunctionWithoutTransition(const Identifier& propertyName, JSCell* value, unsigned at…
188 …virtual void defineGetter(ExecState*, const Identifier& propertyName, JSObject* getterFunction, un…
189 …virtual void defineSetter(ExecState*, const Identifier& propertyName, JSObject* setterFunction, un…
190 virtual JSValue lookupGetter(ExecState*, const Identifier& propertyName);
191 virtual JSValue lookupSetter(ExecState*, const Identifier& propertyName);
192 …virtual bool defineOwnProperty(ExecState*, const Identifier& propertyName, PropertyDescriptor&, bo…
257 …void putDirectInternal(const Identifier& propertyName, JSValue value, unsigned attr, bool checkRea…
258 …void putDirectInternal(JSGlobalData&, const Identifier& propertyName, JSValue value, unsigned attr…
259 …void putDirectInternal(JSGlobalData&, const Identifier& propertyName, JSValue value, unsigned attr…
261 bool inlineGetOwnPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot&);
263 const HashEntry* findPropertyHashEntry(ExecState*, const Identifier& propertyName) const;
349 ALWAYS_INLINE bool JSObject::inlineGetOwnPropertySlot(ExecState* exec, const Identifier& propertyNa… in inlineGetOwnPropertySlot()
371 ALWAYS_INLINE bool JSObject::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, Pr… in getOwnPropertySlot()
376 ALWAYS_INLINE bool JSCell::fastGetOwnPropertySlot(ExecState* exec, const Identifier& propertyName, … in fastGetOwnPropertySlot()
385 ALWAYS_INLINE bool JSObject::getPropertySlot(ExecState* exec, const Identifier& propertyName, Prope… in getPropertySlot()
411 inline JSValue JSObject::get(ExecState* exec, const Identifier& propertyName) const in get()
429 inline void JSObject::putDirectInternal(const Identifier& propertyName, JSValue value, unsigned att… in putDirectInternal()
518 inline void JSObject::putDirectInternal(JSGlobalData& globalData, const Identifier& propertyName, J… in putDirectInternal()
526 inline void JSObject::putDirectInternal(JSGlobalData& globalData, const Identifier& propertyName, J… in putDirectInternal()
532 inline void JSObject::putDirect(const Identifier& propertyName, JSValue value, unsigned attributes,… in putDirect()
540 inline void JSObject::putDirect(const Identifier& propertyName, JSValue value, unsigned attributes) in putDirect()
546 inline void JSObject::putDirectFunction(const Identifier& propertyName, JSCell* value, unsigned att… in putDirectFunction()
551 inline void JSObject::putDirectFunction(const Identifier& propertyName, JSCell* value, unsigned att… in putDirectFunction()
557 inline void JSObject::putDirectWithoutTransition(const Identifier& propertyName, JSValue value, uns… in putDirectWithoutTransition()
566 inline void JSObject::putDirectFunctionWithoutTransition(const Identifier& propertyName, JSCell* va… in putDirectFunctionWithoutTransition()
587 inline JSValue JSValue::get(ExecState* exec, const Identifier& propertyName) const in get()
593 inline JSValue JSValue::get(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) co… in get()
639 inline void JSValue::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropert… in put()