Home | History | Annotate | Download | only in wtf

Lines Matching defs:m_count

18         , m_count(0)
23 m_capacity = m_count = m_array->size();
30 ASSERT(!m_count);
38 m_array->at(m_count - 1).setLastInArray(false);
43 RELEASE_ASSERT(m_count < m_capacity);
45 m_array->at(m_count++) = item;
50 RELEASE_ASSERT(m_count == m_capacity);
52 m_array->at(m_count - 1).setLastInArray(true);
61 for (size_t i = 0; i < m_count; ++i) {
62 bool isLastInArray = (i + 1 == m_count);
71 size_t m_count;