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

  /external/webkit/JavaScriptCore/runtime/
JSGlobalObject.h 81 , evalFunction(0)
119 GlobalEvalFunction* evalFunction;
205 GlobalEvalFunction* evalFunction() const { return d()->evalFunction; }
JSGlobalObject.cpp 332 d()->evalFunction = new (exec) GlobalEvalFunction(exec, GlobalEvalFunction::createStructure(d()->functionPrototype), 1, exec->propertyNames().eval, globalFuncEval, this);
333 putDirectFunctionWithoutTransition(exec, d()->evalFunction, DontEnum);
383 markIfNeeded(markStack, d()->evalFunction);
JSGlobalObjectFunctions.cpp 278 if (!unwrappedObject->isGlobalObject() || static_cast<JSGlobalObject*>(unwrappedObject)->evalFunction() != function)
  /external/webkit/WebCore/inspector/front-end/
InjectedScript.js 631 InjectedScript._evaluateAndWrap = function(evalFunction, object, expression, objectGroup)
635 result.value = InjectedScript.wrapObject(InjectedScript._evaluateOn(evalFunction, object, expression), objectGroup);
649 InjectedScript._evaluateOn = function(evalFunction, object, expression)
651 InjectedScript._ensureCommandLineAPIInstalled(evalFunction, object);
655 var value = evalFunction.call(object, expression);
    [all...]
  /external/webkit/JavaScriptCore/jit/
JITStubs.cpp     [all...]
  /external/webkit/JavaScriptCore/interpreter/
Interpreter.cpp     [all...]

Completed in 219 milliseconds