Searched defs:callerFrame (Results 1 - 3 of 3) sorted by relevance

/external/webkit/Source/WebCore/bindings/v8/
H A DJavaScriptCallFrame.cpp55 v8::Handle<v8::Value> callerFrame = m_callFrame.get()->Get(v8String("caller")); local
56 if (!callerFrame->IsObject())
58 m_caller = JavaScriptCallFrame::create(m_debuggerContext.get(), v8::Handle<v8::Object>::Cast(callerFrame));
/external/webkit/Source/JavaScriptCore/interpreter/
H A DCallFrame.h93 CallFrame* callerFrame() const { return this[RegisterFile::CallerFrame].callFrame(); } function in class:JSC::ExecState
101 void setCallerFrame(CallFrame* callerFrame) { static_cast<Register*>(this)[RegisterFile::CallerFrame] = callerFrame; } argument
105 CallFrame* callerFrame, int argc, JSObject* callee)
107 ASSERT(callerFrame); // Use noCaller() rather than 0 for the outer host call frame caller.
108 ASSERT(callerFrame == noCaller() || callerFrame->removeHostCallFrameFlag()->registerFile()->end() >= this);
112 setCallerFrame(callerFrame);
104 init(CodeBlock* codeBlock, Instruction* vPC, ScopeChainNode* scopeChain, CallFrame* callerFrame, int argc, JSObject* callee) argument
H A DInterpreter.cpp576 CallFrame* callerFrame = callFrame->callerFrame(); local
577 if (callerFrame->hasHostCallFrameFlag())
580 codeBlock = callerFrame->codeBlock();
582 if (callerFrame->globalData().canUseJIT())
592 callFrame = callerFrame;
693 for (CallFrame* callerFrame = callFrame; callerFrame; callerFrame = callerFrame
4838 CallFrame* callerFrame = callFrame->callerFrame(); local
[all...]

Completed in 23 milliseconds