Lines Matching refs:other
37 State(const State& other) in State()
38 : m_beg(other.m_beg), m_end(other.m_end), m_cur(0), in State()
39 m_isOk(true), m_swaped(other.m_swaped), m_nbAlloc(0), in State()
40 m_sharedCur(other.m_sharedCur), m_sharedOk(other.m_sharedOk), in State()
41 m_sharedNbAlloc(other.m_sharedNbAlloc) {} in State()
74 StackAllocator(StackAllocator<_OtherTp> const& other) in StackAllocator()
75 : m_state(other.getState()) {} in StackAllocator()
84 typedef StackAllocator<_Other> other; typedef
148 void swap(StackAllocator &other) { in swap()
149 __STD swap(m_state, other.m_state); in swap()
151 other.m_state.m_swaped = true; in swap()
160 bool operator == (StackAllocator const& other) const
161 { return m_state.m_beg == other.m_state.m_beg; }
163 bool operator != (StackAllocator const& other) const
164 { return !(*this == other); }