HomeSort by relevance Sort by last modified time
    Searched defs:downstream (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/dom/
Position.cpp 417 Position nextPosition = downstream(CanCrossEditingBoundary);
568 // upstream() and downstream() want to return positions that are either in a
581 // This function and downstream() are used for moving back and forth between visually equivalent candidates.
584 // and downstream() will return the right one.
707 // Also, downstream() will return the last position in the last atomic node in boundary for all of the positions
710 Position Position::downstream(EditingBoundaryCrossingRule rule) const function in class:WebCore::Position
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
CompositeEditCommand.cpp 651 // Set upstream and downstream to define the extent of the whitespace surrounding text[offset].
656 int downstream = endOffset; local
657 while ((unsigned)downstream < text.length() && isWhitespace(text[downstream]))
658 downstream++;
660 int length = downstream - upstream;
665 VisiblePosition visibleDownstreamPos(Position(textNode, downstream));
672 isEndOfParagraph(visibleDownstreamPos) || (unsigned)downstream == text.length());
693 deleteInsignificantText(position.upstream(), position.downstream());
694 position = upstreamPos.downstream();
    [all...]

Completed in 3631 milliseconds