Home
last modified time | relevance | path

Searched refs:_stackFrames (Results 1 – 1 of 1) sorted by relevance

/external/apache-xml/src/main/java/org/apache/xpath/
DVariableStack.java76 vs._stackFrames = (XObject[]) _stackFrames.clone(); in clone()
86 XObject[] _stackFrames; field in VariableStack
122 return _stackFrames[i]; in elementAt()
145 int varArraySize = (_stackFrames == null) ? XPathContext.RECURSIONLIMIT * 2 in reset()
146 : _stackFrames.length; in reset()
170 _stackFrames = new XObject[varArraySize]; in reset()
216 if (_frameTop >= _stackFrames.length) in link()
218 XObject newsf[] = new XObject[_stackFrames.length + XPathContext.RECURSIONLIMIT + size]; in link()
220 System.arraycopy(_stackFrames, 0, newsf, 0, _stackFrames.length); in link()
222 _stackFrames = newsf; in link()
[all …]