Home
last modified time | relevance | path

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

/art/compiler/utils/
Dintrusive_forward_list.h60 class IntrusiveForwardList; variable
106 friend class IntrusiveForwardList; variable
135 class IntrusiveForwardList {
147 IntrusiveForwardList() = default;
149 IntrusiveForwardList(InputIterator first, InputIterator last) : IntrusiveForwardList() { in IntrusiveForwardList() function
152 IntrusiveForwardList(IntrusiveForwardList&& src) : first_(src.first_.next_hook) { in IntrusiveForwardList() function
155 IntrusiveForwardList& operator=(const IntrusiveForwardList& src) = delete;
156 IntrusiveForwardList& operator=(IntrusiveForwardList&& src) {
157 IntrusiveForwardList tmp(std::move(src));
161 ~IntrusiveForwardList() = default;
[all …]
Dintrusive_forward_list_test.cc32 using IFLTestValueList = IntrusiveForwardList<IFLTestValue>;
33 using ConstIFLTestValueList = IntrusiveForwardList<const IFLTestValue>;
51 IntrusiveForwardList<IFLTestValue2, IntrusiveForwardListMemberHookTraits<IFLTestValue2>>;
748 IntrusiveForwardList<TwoListsValue, IntrusiveForwardListBaseHookTraits<TwoListsValue, Tag1>>;
750 IntrusiveForwardList<TwoListsValue, IntrusiveForwardListBaseHookTraits<TwoListsValue, Tag2>>;
/art/compiler/optimizing/
Dssa_liveness_analysis.h159 using UsePositionList = IntrusiveForwardList<UsePosition>;
196 using EnvUsePositionList = IntrusiveForwardList<EnvUsePosition>;
Dnodes.h1604 using HUseList = IntrusiveForwardList<HUseListNode<T>>;