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

  /external/webkit/Source/JavaScriptCore/runtime/
JSObject.h 296 bool putDirectInternal(JSGlobalData&, const Identifier& propertyName, JSValue, unsigned attr, bool checkReadOnly, PutPropertySlot&, JSCell*);
297 bool putDirectInternal(JSGlobalData&, const Identifier& propertyName, JSValue, unsigned attr, bool checkReadOnly, PutPropertySlot&);
298 void putDirectInternal(JSGlobalData&, const Identifier& propertyName, JSValue value, unsigned attr = 0);
561 inline bool JSObject::putDirectInternal(JSGlobalData& globalData, const Identifier& propertyName, JSValue value, unsigned attributes, bool checkReadOnly, PutPropertySlot& slot, JSCell* specificFunction)
672 inline bool JSObject::putDirectInternal(JSGlobalData& globalData, const Identifier& propertyName, JSValue value, unsigned attributes, bool checkReadOnly, PutPropertySlot& slot)
677 return putDirectInternal(globalData, propertyName, value, attributes, checkReadOnly, slot, getJSFunction(globalData, value));
680 inline void JSObject::putDirectInternal(JSGlobalData& globalData, const Identifier& propertyName, JSValue value, unsigned attributes)
683 putDirectInternal(globalData, propertyName, value, attributes, false, slot, getJSFunction(globalData, value));
691 return putDirectInternal(globalData, propertyName, value, attributes, checkReadOnly, slot, 0);
697 putDirectInternal(globalData, propertyName, value, attributes, false, slot, 0)
    [all...]
JSObject.cpp 122 if (!putDirectInternal(exec->globalData(), propertyName, value, 0, true, slot) && slot.isStrictMode())
163 if (!putDirectInternal(exec->globalData(), propertyName, value, 0, true, slot) && slot.isStrictMode())
176 putDirectInternal(*globalData, propertyName, value, attributes, checkReadOnly, slot);
181 putDirectInternal(*globalData, propertyName, value, attributes);
191 putDirectInternal(exec->globalData(), propertyName, value, attributes, checkReadOnly, slot);
196 putDirectInternal(exec->globalData(), propertyName, value, attributes);
325 putDirectInternal(globalData, propertyName, getterSetter, attributes | Getter, true, slot);
350 putDirectInternal(exec->globalData(), propertyName, getterSetter, attributes | Setter, true, slot);

Completed in 45 milliseconds