Home | History | Annotate | Download | only in parser

Lines Matching defs:nEnd

397       // The node n spans [nBegin, nEnd]
399 int nEnd = ends.get(n);
403 if (nBegin >= n && nEnd <= endNode &&
406 n = nEnd + 1;
413 // If the node [nBegin, nEnd) lies completely within
414 // the region then proceed to the (nEnd + 1).
415 if (nBegin >= blockStart && nEnd < endNode) {
416 n = nEnd + 1;
424 debug("Forcing new block: " + n + " (" + nBegin + " " + nEnd +