Home | History | Annotate | Download | only in decpp

Lines Matching defs:m_count

193 		: m_count(DE_NULL)
198 : m_count(count)
200 *m_count += 1;
204 : m_count(other.m_count)
206 if (m_count)
207 *m_count += 1;
212 if (m_count)
213 *m_count -= 1;
221 if (m_count)
222 *m_count -= 1;
224 m_count = other.m_count;
226 if (m_count)
227 *m_count += 1;
233 int* m_count;