Searched defs:downstream (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DPosition.cpp411 Position nextPosition = downstream(CanCrossEditingBoundary);
539 // upstream() and downstream() want to return positions that are either in a
552 // This function and downstream() are used for moving back and forth between visually equivalent candidates.
555 // and downstream() will return the right one.
678 // Also, downstream() will return the last position in the last atomic node in boundary for all of the positions
681 Position Position::downstream(EditingBoundaryCrossingRule rule) const function in class:WebCore::Position
1115 position = position.downstream(CanCrossEditingBoundary);
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DCompositeEditCommand.cpp642 // Set upstream and downstream to define the extent of the whitespace surrounding text[offset].
647 int downstream = endOffset; local
648 while ((unsigned)downstream < text.length() && isWhitespace(text[downstream]))
649 downstream++;
651 int length = downstream - upstream;
656 VisiblePosition visibleDownstreamPos(Position(textNode, downstream));
663 isEndOfParagraph(visibleDownstreamPos) || (unsigned)downstream == text.length());
684 deleteInsignificantText(upstreamPos, position.downstream());
685 position = upstreamPos.downstream();
[all...]

Completed in 90 milliseconds