Searched refs:nesting_stack_ (Results 1 – 3 of 3) sorted by relevance
15 #define DCHECK_CURRENT_CONTAINER_IS(x) DCHECK_EQ(x, nesting_stack_.back())16 #define DCHECK_CONTAINER_STACK_DEPTH_EQ(x) DCHECK_EQ(x, nesting_stack_.size())20 #define DEBUG_PUSH_CONTAINER(x) nesting_stack_.push_back(x)21 #define DEBUG_POP_CONTAINER() nesting_stack_.pop_back()
58 std::vector<bool> nesting_stack_; variable
138 nesting_stack_.emplace_back(function_->start, function_->end, in Next()141 nesting_stack_.emplace_back(GetBlock()); in Next()150 while (nesting_stack_.size() > 1 && in Next()151 nesting_stack_.back().end <= block.start) { in Next()152 nesting_stack_.pop_back(); in Next()182 return nesting_stack_.back(); in GetParent()198 bool IsTopLevel() const { return nesting_stack_.size() == 1; } in IsTopLevel()225 std::vector<CoverageBlock> nesting_stack_; member in v8::internal::__anon12d68c6f0211::CoverageBlockIterator