Searched defs:ScriptCallStack (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/inspector/
H A DScriptCallStack.h43 class ScriptCallStack : public RefCounted<ScriptCallStack> { class in namespace:WebCore
47 static PassRefPtr<ScriptCallStack> create(Vector<ScriptCallFrame>&);
49 ~ScriptCallStack();
54 bool isEqual(ScriptCallStack*) const;
58 ScriptCallStack(Vector<ScriptCallFrame>&);
H A DScriptCallStack.cpp32 #include "ScriptCallStack.h"
38 PassRefPtr<ScriptCallStack> ScriptCallStack::create(Vector<ScriptCallFrame>& frames)
40 return adoptRef(new ScriptCallStack(frames));
43 ScriptCallStack::ScriptCallStack(Vector<ScriptCallFrame>& frames) function in class:WebCore::ScriptCallStack
48 ScriptCallStack::~ScriptCallStack()
52 const ScriptCallFrame &ScriptCallStack::at(size_t index) const
58 size_t ScriptCallStack
[all...]

Completed in 227 milliseconds