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);
511 // upstream() and downstream() want to return positions that are either in a
524 // This function and downstream() are used for moving back and forth between visually equivalent candidates.
527 // and downstream() will return the right one.
650 // Also, downstream() will return the last position in the last atomic node in boundary for all of the positions
653 Position Position::downstream(EditingBoundaryCrossingRule rule) const function in class:blink::Position
1047 position = position.downstream(CanCrossEditingBoundary);
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DCompositeEditCommand.cpp653 // Set upstream and downstream to define the extent of the whitespace surrounding text[offset].
658 int downstream = endOffset; local
659 while ((unsigned)downstream < text.length() && isWhitespace(text[downstream]))
660 downstream++;
662 int length = downstream - upstream;
667 VisiblePosition visibleDownstreamPos(Position(textNode, downstream));
674 isEndOfParagraph(visibleDownstreamPos) || (unsigned)downstream == text.length());
695 deleteInsignificantText(upstreamPos, position.downstream());
696 position = upstreamPos.downstream();
[all...]

Completed in 135 milliseconds