Lines Matching refs:m_top
35 , m_top(0) in AstStack()
41 for(sal_uInt32 i=0; i < m_top; i++) in ~AstStack()
52 return m_top; in depth()
57 if (m_top < 1) in top()
59 return m_stack[m_top - 1]; in top()
64 if (m_top == 0) in bottom()
85 for (sal_uInt32 i = m_top; i > 0; i--) in topNonNull()
101 if (m_size == m_top) in push()
115 m_stack[m_top++] = pScope; in push()
124 if (m_top < 1) in pop()
126 pScope = m_stack[--m_top]; in pop()
131 m_top = 0; in clear()