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

/external/chromium_org/v8/src/
H A Ddebug.h181 class DebugInfoListNode { class in namespace:v8::internal
183 explicit DebugInfoListNode(DebugInfo* debug_info);
184 virtual ~DebugInfoListNode();
186 DebugInfoListNode* next() { return next_; }
187 void set_next(DebugInfoListNode* next) { next_ = next; }
195 DebugInfoListNode* next_;
587 DebugInfoListNode* debug_info_list_; // List of active debug info objects.
H A Ddebug.cc694 DebugInfoListNode* node =
695 reinterpret_cast<DebugInfoListNode*>(data.GetParameter());
704 for (DebugInfoListNode* n = debug->debug_info_list_;
713 DebugInfoListNode::DebugInfoListNode(DebugInfo* debug_info): next_(NULL) { function in class:v8::internal::DebugInfoListNode
723 DebugInfoListNode::~DebugInfoListNode() {
1153 DebugInfoListNode* node = debug_info_list_;
1182 DebugInfoListNode* node = debug_info_list_;
1663 DebugInfoListNode* nod
[all...]

Completed in 190 milliseconds