Home
last modified time | relevance | path

Searched refs:hook_ (Results 1 – 1 of 1) sorted by relevance

/art/compiler/utils/
Dintrusive_forward_list.h66 IntrusiveForwardListIterator() : hook_(nullptr) { } in IntrusiveForwardListIterator()
74 : hook_(src.hook_) { } in IntrusiveForwardListIterator()
78 DCHECK(hook_ != nullptr);
79 hook_ = hook_->next_hook;
90 DCHECK(hook_ != nullptr);
91 return *HookTraits::GetValue(hook_);
98 explicit IntrusiveForwardListIterator(const IntrusiveForwardListHook* hook) : hook_(hook) { } in IntrusiveForwardListIterator()
100 const IntrusiveForwardListHook* hook_; variable
118 return lhs.hook_ == rhs.hook_;
197 new_hook->next_hook = position.hook_->next_hook; in insert_after()
[all …]