Searched refs:m_queueMark (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/compiler/
H A DXPathParser.java66 * The position in the token queue is tracked by m_queueMark.
68 int m_queueMark = 0; field in class:XPathParser
295 int pos = (m_queueMark + n);
331 int lookBehindPos = m_queueMark - (n + 1);
373 if ((m_queueMark - n) > 0)
375 String lookbehind = (String) m_ops.m_tokenQueue.elementAt(m_queueMark - (n - 1));
404 if ((m_queueMark + n) <= m_ops.getTokenQueueSize())
406 String lookahead = (String) m_ops.m_tokenQueue.elementAt(m_queueMark + (n - 1));
425 if (m_queueMark < m_ops.getTokenQueueSize())
427 m_token = (String) m_ops.m_tokenQueue.elementAt(m_queueMark
[all...]

Completed in 23 milliseconds