Home | History | Annotate | Download | only in editing

Lines Matching refs:pastEnd

126     Node* serializeNodes(Node* startNode, Node* pastEnd);
320 Node* StyledMarkupAccumulator::serializeNodes(Node* startNode, Node* pastEnd)
325 for (Node* n = startNode; n != pastEnd; n = next) {
327 // past pastEnd and become null here. This shouldn't be possible.
337 if (isBlock(n) && canHaveChildrenForEditing(n) && next == pastEnd)
343 // Don't skip over pastEnd.
344 if (pastEnd && pastEnd->isDescendantOf(n))
345 next = pastEnd;
362 if (!openedTag && (!n->nextSibling() || next == pastEnd)) {
366 if (next != pastEnd && next->isDescendantOf(ancestor))
376 if (next != pastEnd && n != nextParent) {
559 Node* pastEnd = updatedRange->pastLastNode();
575 if (pastEnd && Range::compareBoundaryPoints(startNode, 0, pastEnd, 0, ec) >= 0) {
592 Node* lastClosed = accumulator.serializeNodes(startNode, pastEnd);