Home | History | Annotate | Download | only in gc

Lines Matching defs:stack_

82         stack_(std::move(r.stack_)) {}
86 stack_(r.stack_) {}
97 return stack_.size();
102 return stack_[index];
106 stack_.push_back(element);
110 DCHECK_LT(index, stack_.size());
111 stack_[index].SetMethod(m);
112 stack_[index].SetDexPc(dex_pc);
117 return tid_ == other.tid_ && stack_ == other.stack_;
122 std::vector<AllocRecordStackTraceElement> stack_;