Searched refs:JavaScriptCallFrame (Results 1 - 11 of 11) sorted by relevance

/external/webkit/Source/WebCore/bindings/js/
H A DJavaScriptCallFrame.cpp27 #include "JavaScriptCallFrame.h"
45 JavaScriptCallFrame::JavaScriptCallFrame(const DebuggerCallFrame& debuggerCallFrame, PassRefPtr<JavaScriptCallFrame> caller, intptr_t sourceID, const TextPosition0& textPosition) function in class:WebCore::JavaScriptCallFrame
54 JavaScriptCallFrame* JavaScriptCallFrame::caller()
59 JSC::ScopeChainNode* JavaScriptCallFrame::scopeChain() const
67 JSC::JSGlobalObject* JavaScriptCallFrame::dynamicGlobalObject() const
75 String JavaScriptCallFrame::functionName() const
86 DebuggerCallFrame::Type JavaScriptCallFrame
[all...]
H A DJavaScriptCallFrame.h40 class JavaScriptCallFrame : public RefCounted<JavaScriptCallFrame> { class in namespace:WebCore
42 static PassRefPtr<JavaScriptCallFrame> create(const JSC::DebuggerCallFrame& debuggerCallFrame, PassRefPtr<JavaScriptCallFrame> caller, intptr_t sourceID, const TextPosition0& textPosition)
44 return adoptRef(new JavaScriptCallFrame(debuggerCallFrame, caller, sourceID, textPosition));
55 JavaScriptCallFrame* caller();
79 JavaScriptCallFrame(const JSC::DebuggerCallFrame&, PassRefPtr<JavaScriptCallFrame> caller, intptr_t sourceID, const TextPosition0&);
82 RefPtr<JavaScriptCallFrame> m_caller;
H A DScriptDebugServer.h54 class JavaScriptCallFrame;
86 JavaScriptCallFrame* currentCallFrame();
134 JavaScriptCallFrame* m_pauseOnCallFrame;
135 RefPtr<JavaScriptCallFrame> m_currentCallFrame;
H A DJSInjectedScriptHostCustom.cpp55 #include "JavaScriptCallFrame.h"
80 JavaScriptCallFrame* callFrame = impl()->debuggerAgent()->scriptDebugServer().currentCallFrame();
H A DScriptDebugServer.cpp37 #include "JavaScriptCallFrame.h"
198 JavaScriptCallFrame* ScriptDebugServer::currentCallFrame()
308 m_currentCallFrame = JavaScriptCallFrame::create(debuggerCallFrame, m_currentCallFrame, sourceID, textPosition);
/external/webkit/Source/WebCore/bindings/v8/
H A DJavaScriptCallFrame.h42 class JavaScriptCallFrame : public RefCounted<JavaScriptCallFrame> { class in namespace:WebCore
44 static PassRefPtr<JavaScriptCallFrame> create(v8::Handle<v8::Context> debuggerContext, v8::Handle<v8::Object> callFrame)
46 return adoptRef(new JavaScriptCallFrame(debuggerContext, callFrame));
48 ~JavaScriptCallFrame();
50 JavaScriptCallFrame* caller();
64 JavaScriptCallFrame(v8::Handle<v8::Context> debuggerContext, v8::Handle<v8::Object> callFrame);
66 RefPtr<JavaScriptCallFrame> m_caller;
H A DJavaScriptCallFrame.cpp32 #include "JavaScriptCallFrame.h"
40 JavaScriptCallFrame::JavaScriptCallFrame(v8::Handle<v8::Context> debuggerContext, v8::Handle<v8::Object> callFrame) function in class:WebCore::JavaScriptCallFrame
46 JavaScriptCallFrame::~JavaScriptCallFrame()
50 JavaScriptCallFrame* JavaScriptCallFrame::caller()
58 m_caller = JavaScriptCallFrame::create(m_debuggerContext.get(), v8::Handle<v8::Object>::Cast(callerFrame));
63 int JavaScriptCallFrame::sourceID() const
73 int JavaScriptCallFrame
[all...]
H A DScriptDebugServer.h36 #include "JavaScriptCallFrame.h"
80 PassRefPtr<JavaScriptCallFrame> currentCallFrame();
112 RefPtr<JavaScriptCallFrame> m_currentCallFrame;
H A DScriptDebugServer.cpp37 #include "JavaScriptCallFrame.h"
245 PassRefPtr<JavaScriptCallFrame> ScriptDebugServer::currentCallFrame()
251 m_currentCallFrame = JavaScriptCallFrame::create(v8::Debug::GetDebugContext(), v8::Handle<v8::Object>::Cast(currentCallFrameV8));
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8JavaScriptCallFrameCustom.cpp44 JavaScriptCallFrame* impl = V8JavaScriptCallFrame::toNative(args.Holder());
52 JavaScriptCallFrame* impl = V8JavaScriptCallFrame::toNative(info.Holder());
59 JavaScriptCallFrame* impl = V8JavaScriptCallFrame::toNative(args.Holder());
67 JavaScriptCallFrame* impl = V8JavaScriptCallFrame::toNative(info.Holder());
/external/webkit/Source/WebCore/inspector/
H A DJavaScriptCallFrame.idl32 ] JavaScriptCallFrame {
43 readonly attribute JavaScriptCallFrame caller;

Completed in 225 milliseconds