Searched defs:next_ (Results 1 - 9 of 9) sorted by relevance

/art/runtime/mirror/
H A Dreference.h153 HeapReference<FinalizerReference> next_; member in class:art::mirror::FinalizerReference
/art/runtime/jit/
H A Ddebugger_interface.cc40 JITCodeEntry* next_; member in struct:art::JITCodeEntry
88 entry->next_ = __jit_debug_descriptor.first_entry_;
89 if (entry->next_ != nullptr) {
90 entry->next_->prev_ = entry;
102 entry->prev_->next_ = entry->next_;
104 __jit_debug_descriptor.first_entry_ = entry->next_;
107 if (entry->next_ != nullptr) {
108 entry->next_->prev_ = entry->prev_;
/art/compiler/optimizing/
H A Dgvn.cc204 : instruction_(instruction), hash_code_(hash_code), next_(next) {}
208 Node* GetNext() const { return next_; }
209 void SetNext(Node* node) { next_ = node; }
218 Node* next_; member in class:art::ValueSet::Node
H A Dssa_liveness_analysis.h60 LiveRange(size_t start, size_t end, LiveRange* next) : start_(start), end_(end), next_(next) {
62 DCHECK(next_ == nullptr || next_->GetStart() > GetEnd());
67 LiveRange* GetNext() const { return next_; }
84 start_, end_, next_ == nullptr ? nullptr : next_->Dup(allocator));
88 return next_ == nullptr ? this : next_->GetLastRange();
94 LiveRange* next_; member in class:art::FINAL
115 next_(nex
163 UsePosition* next_; member in class:art::UsePosition
196 SafepointPosition* next_; member in class:art::SafepointPosition
[all...]
H A Dnodes.h1762 next_(nullptr),
1785 HInstruction* GetNext() const { return next_; }
2125 HInstruction* next_; member in class:art::HInstruction
2196 next_ = Done() ? nullptr : instruction_->GetNext();
2202 instruction_ = next_;
2203 next_ = Done() ? nullptr : instruction_->GetNext();
2208 HInstruction* next_; member in class:art::HInstructionIterator
2217 next_ = Done() ? nullptr : instruction_->GetPrevious();
2223 instruction_ = next_;
2224 next_
2229 HInstruction* next_; member in class:art::HBackwardInstructionIterator
[all...]
/art/compiler/utils/
H A Dassembler.h67 SlowPath() : next_(nullptr) {}
81 SlowPath *next_; member in class:art::SlowPath
140 for ( ; cur->next_ != nullptr ; cur = cur->next_) {}
141 cur->next_ = slowpath;
151 next = cur->next_;
/art/runtime/base/
H A Darena_allocator.h230 Arena* next_; member in class:art::Arena
/art/runtime/gc/allocator/
H A Drosalloc.h119 return next_;
122 next_ = next;
129 next_ = nullptr;
133 Slot* next_; // Next slot in the list. member in class:art::gc::allocator::RosAlloc::Slot
840 return OFFSETOF_MEMBER(Slot, next_);
/art/runtime/
H A Dthread.cc303 FrameIdToShadowFrame* GetNext() const { return next_; }
304 void SetNext(FrameIdToShadowFrame* next) { next_ = next; }
315 next_(next) {}
319 FrameIdToShadowFrame* next_; member in class:art::FrameIdToShadowFrame

Completed in 186 milliseconds