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

/external/webkit/Source/WebCore/dom/
H A DPosition.cpp347 Position nextPosition = downstream(CanCrossEditingBoundary);
498 // upstream() and downstream() want to return positions that are either in a
511 // This function and downstream() are used for moving back and forth between visually equivalent candidates.
514 // and downstream() will return the right one.
637 // Also, downstream() will return the last position in the last atomic node in boundary for all of the positions
639 Position Position::downstream(EditingBoundaryCrossingRule rule) const function in class:WebCore::Position
1042 position = position.downstream(CanCrossEditingBoundary);
/external/webkit/Source/WebCore/editing/
H A DCompositeEditCommand.cpp454 // Set upstream and downstream to define the extent of the whitespace surrounding text[offset].
459 int downstream = endOffset; local
460 while ((unsigned)downstream < text.length() && isWhitespace(text[downstream]))
461 downstream++;
463 int length = downstream - upstream;
468 VisiblePosition visibleDownstreamPos(Position(textNode, downstream, Position::PositionIsOffsetInAnchor));
475 isEndOfParagraph(visibleDownstreamPos) || (unsigned)downstream == text.length());
496 deleteInsignificantText(position.upstream(), position.downstream());
497 position = upstreamPos.downstream();
[all...]

Completed in 64 milliseconds