Lines Matching refs:Self
46 typedef LinkListNode Self; //!< @details :private typedef
58 Self* GetNext() const { return m_pNext; } in GetNext()
65 Self* GetPrev() const { return m_pPrev; } in GetPrev()
75 friend bool operator==(const Self &r1,const Self &r2) { return &r1 == &r2; }
85 friend bool operator!=(const Self &r1,const Self &r2) { return !(r1 == r2); }
88 Self* m_pNext;
89 Self* m_pPrev;
106 typedef LinkListImpl Self; typedef
322 typedef LinkList Self; //!< @details :private typedef
440 friend class Self; // コンストラクタを使用するため。 variable
548 friend class Self; // コンストラクタを使用するため。 variable
594 const_iterator begin() const { return const_iterator(const_cast<Self*>(this)->begin()); } in begin()
602 const_iterator end() const { return const_iterator(const_cast<Self*>(this)->end()); } in end()