Home | History | Annotate | Download | only in serializer

Lines Matching refs:m_stack

377         Object[] m_stack = new Object[max];
383 clone.m_stack = new Object[clone.max];
387 clone.m_stack[i] = this.m_stack[i];
401 System.arraycopy(m_stack,0, newArray, 0, max);
403 m_stack = newArray;
405 m_stack[top] = o;
412 o = m_stack[top];
413 // m_stack[top] = null; do we really care?
424 o = m_stack[top];
432 return m_stack[idx];
444 m_stack[i] = null;
449 return m_stack[index];