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

  /external/webkit/JavaScriptCore/runtime/
JSObject.h 257 void putDirectInternal(const Identifier& propertyName, JSValue value, unsigned attr, bool checkReadOnly, PutPropertySlot& slot, JSCell*);
258 void putDirectInternal(JSGlobalData&, const Identifier& propertyName, JSValue value, unsigned attr, bool checkReadOnly, PutPropertySlot& slot);
259 void putDirectInternal(JSGlobalData&, const Identifier& propertyName, JSValue value, unsigned attr = 0);
429 inline void JSObject::putDirectInternal(const Identifier& propertyName, JSValue value, unsigned attributes, bool checkReadOnly, PutPropertySlot& slot, JSCell* specificFunction)
518 inline void JSObject::putDirectInternal(JSGlobalData& globalData, const Identifier& propertyName, JSValue value, unsigned attributes, bool checkReadOnly, PutPropertySlot& slot)
523 putDirectInternal(propertyName, value, attributes, checkReadOnly, slot, getJSFunction(globalData, value));
526 inline void JSObject::putDirectInternal(JSGlobalData& globalData, const Identifier& propertyName, JSValue value, unsigned attributes)
529 putDirectInternal(propertyName, value, attributes, false, slot, getJSFunction(globalData, value));
537 putDirectInternal(propertyName, value, attributes, checkReadOnly, slot, 0);
543 putDirectInternal(propertyName, value, attributes, false, slot, 0)
    [all...]
JSObject.cpp 126 putDirectInternal(exec->globalData(), propertyName, value, 0, true, slot);
163 putDirectInternal(exec->globalData(), propertyName, value, 0, true, slot);
175 putDirectInternal(exec->globalData(), propertyName, value, attributes, checkReadOnly, slot);
180 putDirectInternal(exec->globalData(), propertyName, value, attributes);
308 putDirectInternal(exec->globalData(), propertyName, getterSetter, attributes | Getter, true, slot);
335 putDirectInternal(exec->globalData(), propertyName, getterSetter, attributes | Setter, true, slot);

Completed in 499 milliseconds