Lines Matching full:other
37 State(const State& other)
38 : m_beg(other.m_beg), m_end(other.m_end), m_cur(0),
39 m_isOk(true), m_swaped(other.m_swaped), m_nbAlloc(0),
40 m_sharedCur(other.m_sharedCur), m_sharedOk(other.m_sharedOk),
41 m_sharedNbAlloc(other.m_sharedNbAlloc) {}
74 StackAllocator(StackAllocator<_OtherTp> const& other)
75 : m_state(other.getState()) {}
84 typedef StackAllocator<_Other> other;
148 void swap(StackAllocator &other) {
149 __STD swap(m_state, other.m_state);
151 other.m_state.m_swaped = true;
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); }