Home | History | Annotate | Download | only in xpath

Lines Matching defs:m_next

172     m_next = 0;
244 if ((m_next) < this.size())
246 Node next = this.elementAt(m_next);
248 m_next++;
274 if ((m_next - 1) > 0)
276 m_next--;
278 return this.elementAt(m_next);
307 return (m_next == 0);
313 * m_next to the index. If the index argument is -1, this
329 if ((index >= 0) && (m_next < m_firstFree))
330 m_next = index;
332 m_next = m_firstFree - 1;
718 transient protected int m_next = 0;
730 return m_next;
746 m_next = i;
763 int saved = m_next;
764 Node n = (m_next < m_firstFree) ? elementAt(m_next) : null;
765 m_next = saved; // HACK: I think this is a bit of a hack. -sb