HomeSort by relevance Sort by last modified time
    Searched refs:IntrusiveForwardList (Results 1 - 4 of 4) sorted by null

  /art/compiler/utils/
intrusive_forward_list.h 60 class IntrusiveForwardList;
65 // Construct/copy/destroy (except the private constructor used by IntrusiveForwardList<>).
106 friend class IntrusiveForwardList;
135 class IntrusiveForwardList {
147 IntrusiveForwardList() = default;
149 IntrusiveForwardList(InputIterator first, InputIterator last) : IntrusiveForwardList() {
152 IntrusiveForwardList(IntrusiveForwardList&& src) : first_(src.first_.next_hook) {
155 IntrusiveForwardList& operator=(const IntrusiveForwardList& src) = delete
    [all...]
intrusive_forward_list_test.cc 32 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/
ssa_liveness_analysis.h 159 using UsePositionList = IntrusiveForwardList<UsePosition>;
196 using EnvUsePositionList = IntrusiveForwardList<EnvUsePosition>;
    [all...]
nodes.h     [all...]

Completed in 198 milliseconds