Lines Matching defs:next_
51 // We don't need to handle removing the last stack from the list (next_ ==
54 isolate_->wasm_stacks() = next_;
55 prev_->next_ = next_;
56 next_->prev_ = prev_;
66 stack->next_ = this->next_;
68 this->next_->prev_ = stack;
69 this->next_ = stack;
72 StackMemory* next() { return next_; }
120 StackMemory* next_ = this;