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

  /external/webkit/JavaScriptCore/runtime/
ConstructData.cpp 33 JSObject* construct(ExecState* exec, JSValue object, ConstructType constructType, const ConstructData& constructData, const ArgList& args)
35 if (constructType == ConstructTypeHost)
37 ASSERT(constructType == ConstructTypeJS);
Error.cpp 82 ConstructType constructType = constructor->getConstructData(constructData);
83 JSObject* error = construct(exec, constructor, constructType, constructData, args);
  /external/webkit/WebCore/bindings/js/
ScriptFunctionCall.cpp 183 ConstructType constructType = constructor->getConstructData(constructData);
184 if (constructType == ConstructTypeNone)
187 JSValue result = JSC::construct(m_exec, constructor, constructType, constructData, m_arguments);
  /external/webkit/JavaScriptCore/API/
JSObjectRef.cpp 418 ConstructType constructType = jsObject->getConstructData(constructData);
419 if (constructType == ConstructTypeNone)
425 JSObjectRef result = toRef(construct(exec, jsObject, constructType, constructData, argList));
  /external/webkit/WebCore/bridge/
NP_jsobject.cpp 444 ConstructType constructType = constructor.getConstructData(constructData);
445 if (constructType == ConstructTypeNone)
452 JSValue resultV = JSC::construct(exec, constructor, constructType, constructData, argList);
  /external/webkit/WebKit/mac/Plugins/Hosted/
NetscapePluginInstanceProxy.mm 860 ConstructType constructType = object->getConstructData(constructData);
861 if (constructType == ConstructTypeNone)
869 JSValue value = JSC::construct(exec, object, constructType, constructData, argList);
    [all...]
  /external/webkit/JavaScriptCore/interpreter/
Interpreter.cpp     [all...]
  /external/webkit/JavaScriptCore/jit/
JITStubs.cpp     [all...]

Completed in 706 milliseconds