Home | History | Annotate | Download | only in xpath

Lines Matching defs:_links

77     vs._links = (int[]) _links.clone();
106 int[] _links;
143 int linksSize = (_links == null) ? XPathContext.RECURSIONLIMIT
144 : _links.length;
159 // Don't bother reallocating _links array if it exists already
160 if (_links == null) {
161 _links = new int[linksSize];
167 _links[_linksTop++] = 0;
225 if (_linksTop + 1 >= _links.length)
227 int newlinks[] = new int[_links.length + (CLEARLIMITATION * 2)];
229 System.arraycopy(_links, 0, newlinks, 0, _links.length);
231 _links = newlinks;
234 _links[_linksTop++] = _currentFrameBottom;
245 _frameTop = _links[--_linksTop];
246 _currentFrameBottom = _links[_linksTop - 1];
257 _frameTop = _links[--_linksTop];