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

/external/apache-xml/src/main/java/org/apache/xpath/compiler/
H A DOpMap.java72 * end of the m_tokenQueue. The idea is that the queue can be marked and a sequence
75 ObjectVector m_tokenQueue = new ObjectVector(MAXTOKENQUEUESIZE, BLOCKTOKENQUEUESIZE); field in class:OpMap
84 return m_tokenQueue;
96 return m_tokenQueue.elementAt(pos);
111 return m_tokenQueue.size();
117 * operations codes and indexes into the m_tokenQueue.
125 * operations codes and indexes into the m_tokenQueue.
160 n = m_tokenQueue.size();
161 m_tokenQueue.setToSize(n + 4);
163 m_tokenQueue
[all...]
H A DXPathParser.java299 String tok = ((String) m_ops.m_tokenQueue.elementAt(pos - 1));
333 String lookbehind = (String) m_ops.m_tokenQueue.elementAt(lookBehindPos);
373 String lookbehind = (String) m_ops.m_tokenQueue.elementAt(m_queueMark - (n - 1));
404 String lookahead = (String) m_ops.m_tokenQueue.elementAt(m_queueMark + (n - 1));
425 m_token = (String) m_ops.m_tokenQueue.elementAt(m_queueMark++);
451 tok = (String) m_ops.m_tokenQueue.elementAt(relative);
472 m_token = (String) m_ops.m_tokenQueue.elementAt(m_queueMark);
686 String t = (String) m_ops.m_tokenQueue.elementAt(q++);
2031 m_ops.m_tokenQueue.setElementAt(null,tokenQueuePos);
2035 m_ops.m_tokenQueue
[all...]

Completed in 78 milliseconds