Home | History | Annotate | Download | only in xpath

Lines Matching refs:m_next

285     m_next = 0;
388 if ((m_next) < this.size())
390 int next = this.elementAt(m_next);
392 m_next++;
418 if ((m_next - 1) > 0)
420 m_next--;
422 return this.elementAt(m_next);
463 return (m_next == 0);
469 * m_next to the index. If the index argument is -1, this
485 if ((index >= 0) && (m_next < m_firstFree))
486 m_next = index;
488 m_next = m_firstFree - 1;
1103 transient protected int m_next = 0;
1115 return m_next;
1131 m_next = i;
1148 int saved = m_next;
1152 int current = (m_next > 0) ? m_next-1 : m_next;
1154 m_next = saved; // HACK: I think this is a bit of a hack. -sb