Lines Matching refs:Self
48 typedef LinkListNode Self; //!< @details :private typedef
60 Self* GetNext() const { return m_pNext; } in GetNext()
67 Self* GetPrev() const { return m_pPrev; } in GetPrev()
77 friend bool operator==(const Self &r1,const Self &r2) { return &r1 == &r2; }
87 friend bool operator!=(const Self &r1,const Self &r2) { return !(r1 == r2); }
90 Self* m_pNext;
91 Self* m_pPrev;
108 typedef LinkListImpl Self; typedef
325 typedef LinkList Self; //!< @details :private typedef
443 friend class Self; // コンストラクタを使用するため。 variable
551 friend class Self; // コンストラクタを使用するため。 variable
597 const_iterator begin() const { return const_iterator(const_cast<Self*>(this)->begin()); } in begin()
605 const_iterator end() const { return const_iterator(const_cast<Self*>(this)->end()); } in end()