Home
last modified time | relevance | path

Searched refs:unwrappedExec (Results 1 – 6 of 6) sorted by relevance

/external/webkit/WebCore/bindings/js/
DJSInspectorCallbackWrapper.cpp56 JSValue JSInspectorCallbackWrapper::wrap(ExecState* unwrappedExec, JSValue unwrappedValue) in wrap() argument
74 … return new (unwrappedExec) JSInspectorCallbackWrapper(unwrappedExec, unwrappedObject, structure); in wrap()
76 …return new (unwrappedExec) JSInspectorCallbackWrapper(unwrappedExec, unwrappedObject, asObject(wra… in wrap()
79 JSInspectorCallbackWrapper::JSInspectorCallbackWrapper(ExecState* unwrappedExec, JSObject* unwrappe… in JSInspectorCallbackWrapper() argument
80 : JSQuarantinedObjectWrapper(unwrappedExec, unwrappedObject, structure) in JSInspectorCallbackWrapper()
91 JSValue JSInspectorCallbackWrapper::prepareIncomingValue(ExecState* unwrappedExec, JSValue unwrappe… in prepareIncomingValue() argument
104 return JSInspectedObjectWrapper::wrap(unwrappedExec, unwrappedValue); in prepareIncomingValue()
DJSInspectedObjectWrapper.cpp50 JSValue JSInspectedObjectWrapper::wrap(ExecState* unwrappedExec, JSValue unwrappedValue) in wrap() argument
60 if (WrapperMap* wrapperMap = wrappers().get(unwrappedExec->lexicalGlobalObject())) in wrap()
68 …return new (unwrappedExec) JSInspectedObjectWrapper(unwrappedExec, unwrappedObject, JSQuarantinedO… in wrap()
69 …new (unwrappedExec) JSInspectedObjectWrapper(unwrappedExec, unwrappedObject, JSQuarantinedObjectWr… in wrap()
72 JSInspectedObjectWrapper::JSInspectedObjectWrapper(ExecState* unwrappedExec, JSObject* unwrappedObj… in JSInspectedObjectWrapper() argument
73 : JSQuarantinedObjectWrapper(unwrappedExec, unwrappedObject, structure) in JSInspectedObjectWrapper()
DJSInspectorCallbackWrapper.h35 static JSC::JSValue wrap(JSC::ExecState* unwrappedExec, JSC::JSValue unwrappedValue);
43 …JSInspectorCallbackWrapper(JSC::ExecState* unwrappedExec, JSC::JSObject* unwrappedObject, PassRefP…
47 …virtual JSC::JSValue prepareIncomingValue(JSC::ExecState* unwrappedExec, JSC::JSValue unwrappedVal…
48 …lue wrapOutgoingValue(JSC::ExecState* unwrappedExec, JSC::JSValue unwrappedValue) const { return w… in wrapOutgoingValue() argument
DJSInspectedObjectWrapper.h35 static JSC::JSValue wrap(JSC::ExecState* unwrappedExec, JSC::JSValue unwrappedValue);
41 …JSInspectedObjectWrapper(JSC::ExecState* unwrappedExec, JSC::JSObject* unwrappedObject, PassRefPtr…
51 …virtual JSC::JSValue prepareIncomingValue(JSC::ExecState* unwrappedExec, JSC::JSValue unwrappedVal…
52 …lue wrapOutgoingValue(JSC::ExecState* unwrappedExec, JSC::JSValue unwrappedValue) const { return w… in wrapOutgoingValue() argument
DJSQuarantinedObjectWrapper.h54 …JSQuarantinedObjectWrapper(JSC::ExecState* unwrappedExec, JSC::JSObject* unwrappedObject, PassRefP…
85 …virtual JSC::JSValue prepareIncomingValue(JSC::ExecState* unwrappedExec, JSC::JSValue unwrappedVal…
86 …virtual JSC::JSValue wrapOutgoingValue(JSC::ExecState* unwrappedExec, JSC::JSValue unwrappedValue)…
DJSQuarantinedObjectWrapper.cpp59 JSQuarantinedObjectWrapper::JSQuarantinedObjectWrapper(ExecState* unwrappedExec, JSObject* unwrappe… in JSQuarantinedObjectWrapper() argument
61 , m_unwrappedGlobalObject(unwrappedExec->lexicalGlobalObject()) in JSQuarantinedObjectWrapper()
64 ASSERT_ARG(unwrappedExec, unwrappedExec); in JSQuarantinedObjectWrapper()