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

  /external/webkit/Source/JavaScriptCore/runtime/
JSObject.cpp 540 void JSObject::putDirectFunction(ExecState* exec, InternalFunction* function, unsigned attr)
542 putDirectFunction(exec->globalData(), Identifier(exec, function->name(exec)), function, attr);
545 void JSObject::putDirectFunction(ExecState* exec, JSFunction* function, unsigned attr)
547 putDirectFunction(exec->globalData(), Identifier(exec, function->name(exec)), function, attr);
JSObject.h 183 void putDirectFunction(JSGlobalData&, const Identifier& propertyName, JSCell*, unsigned attr = 0);
184 void putDirectFunction(JSGlobalData&, const Identifier& propertyName, JSCell*, unsigned attr, bool checkReadOnly, PutPropertySlot&);
185 void putDirectFunction(ExecState* exec, InternalFunction* function, unsigned attr = 0);
186 void putDirectFunction(ExecState* exec, JSFunction* function, unsigned attr = 0);
705 inline void JSObject::putDirectFunction(JSGlobalData& globalData, const Identifier& propertyName, JSCell* value, unsigned attributes, bool checkReadOnly, PutPropertySlot& slot)
710 inline void JSObject::putDirectFunction(JSGlobalData& globalData, const Identifier& propertyName, JSCell* value, unsigned attr)
    [all...]

Completed in 79 milliseconds