Home | History | Annotate | Download | only in heap

Lines Matching defs:m_count

107         , m_count(0)
113 ASSERT(m_count > 0);
114 return m_stack[m_count - 1].get();
119 ASSERT(m_count > 0);
120 return m_stack[--m_count].get();
125 if (m_count == m_stack.size())
128 m_stack[m_count] = value;
129 m_count++;
132 bool isEmpty() const { return !m_count; }
133 unsigned size() const { return m_count; }
138 unsigned m_count;