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

  /external/webkit/Source/JavaScriptCore/
jsc.cpp 153 putDirectFunction(globalExec(), new (globalExec()) JSFunction(globalExec(), this, functionStructure(), 1, Identifier(globalExec(), "debug"), functionDebug));
154 putDirectFunction(globalExec(), new (globalExec()) JSFunction(globalExec(), this, functionStructure(), 1, Identifier(globalExec(), "print"), functionPrint));
155 putDirectFunction(globalExec(), new (globalExec()) JSFunction(globalExec(), this, functionStructure(), 0, Identifier(globalExec(), "quit"), functionQuit));
156 putDirectFunction(globalExec(), new (globalExec()) JSFunction(globalExec(), this, functionStructure(), 0, Identifier(globalExec(), "gc"), functionGC));
157 putDirectFunction(globalExec(), new (globalExec()) JSFunction(globalExec(), this, functionStructure(), 1, Identifier(globalExec(), "version"), functionVersion));
158 putDirectFunction(globalExec(), new (globalExec()) JSFunction(globalExec(), this, functionStructure(), 1, Identifier(globalExec(), "run"), functionRun));
159 putDirectFunction(globalExec(), new (globalExec()) JSFunction(globalExec(), this, functionStructure(), 1, Identifier(globalExec(), "load"), functionLoad));
160 putDirectFunction(globalExec(), new (globalExec()) JSFunction(globalExec(), this, functionStructure(), 1, Identifier(globalExec(), "checkSyntax"), functionCheckSyntax));
161 putDirectFunction(globalExec(), new (globalExec()) JSFunction(globalExec(), this, functionStructure(), 0, Identifier(globalExec(), "readline"), functionReadline));
164 putDirectFunction(globalExec(), new (globalExec()) JSFunction(globalExec(), this, functionStructure(), 1, Identifier (…)
    [all...]
  /external/webkit/Source/JavaScriptCore/runtime/
Lookup.cpp 88 thisObj->putDirectFunction(exec->globalData(), propertyName, function, entry->attributes());
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...]
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);
Lookup.h 315 thisObj->putDirectFunction(exec->globalData(), propertyName, value.asCell());

Completed in 4531 milliseconds