OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_tokenQueue
(Results
1 - 2
of
2
) sorted by null
/external/apache-xml/src/main/java/org/apache/xpath/compiler/
OpMap.java
72
* 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);
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
.setElementAt(null,n)
[
all
...]
XPathParser.java
299
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++);
[
all
...]
Completed in 1057 milliseconds