Home
last modified time | relevance | path

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

/art/compiler/utils/
Dintrusive_forward_list.h55 IntrusiveForwardListIterator() : hook_(nullptr) { } in IntrusiveForwardListIterator()
63 : hook_(src.hook_) { } in IntrusiveForwardListIterator()
67 DCHECK(hook_ != nullptr);
68 hook_ = hook_->next_hook;
79 DCHECK(hook_ != nullptr);
80 return *HookTraits::GetValue(hook_);
87 explicit IntrusiveForwardListIterator(const IntrusiveForwardListHook* hook) : hook_(hook) { } in IntrusiveForwardListIterator()
89 const IntrusiveForwardListHook* hook_; variable
107 return lhs.hook_ == rhs.hook_;
186 new_hook->next_hook = position.hook_->next_hook; in insert_after()
[all …]