HomeSort by relevance Sort by last modified time
    Searched defs:DebugInfoListNode (Results 1 - 2 of 2) sorted by null

  /external/v8/src/
debug.cc 497 DebugInfoListNode* Debug::debug_info_list_ = NULL;
644 DebugInfoListNode* node = reinterpret_cast<DebugInfoListNode*>(data);
649 ASSERT(node != reinterpret_cast<DebugInfoListNode*>(data));
656 DebugInfoListNode::DebugInfoListNode(DebugInfo* debug_info): next_(NULL) {
664 DebugInfoListNode::~DebugInfoListNode() {
1003 DebugInfoListNode* node = debug_info_list_;
    [all...]
debug.h 191 class DebugInfoListNode {
193 explicit DebugInfoListNode(DebugInfo* debug_info);
194 virtual ~DebugInfoListNode();
196 DebugInfoListNode* next() { return next_; }
197 void set_next(DebugInfoListNode* next) { next_ = next; }
205 DebugInfoListNode* next_;
409 static DebugInfoListNode* debug_info_list_;

Completed in 15 milliseconds