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

  /external/webkit/WebCore/dom/
Position.cpp 319 Position nextPosition = downstream(CanCrossEditingBoundary);
453 // upstream() and downstream() want to return positions that are either in a
466 // This function and downstream() are used for moving back and forth between visually equivalent candidates.
469 // and downstream() will return the right one.
591 // Also, downstream() will return the last position in the last atomic node in boundary for all of the positions
593 Position Position::downstream(EditingBoundaryCrossingRule rule) const function in class:WebCore::Position
875 getInlineBoxAndOffset(DOWNSTREAM, b1, ignoredCaretOffset);
877 pos.getInlineBoxAndOffset(DOWNSTREAM, b2, ignoredCaretOffset);
    [all...]
  /external/webkit/WebCore/editing/
CompositeEditCommand.cpp 418 // Set upstream and downstream to define the extent of the whitespace surrounding text[offset].
423 int downstream = offset; local
424 while ((unsigned)downstream + 1 < text.length() && isWhitespace(text[downstream + 1]))
425 downstream++;
427 int length = downstream - upstream + 1;
431 VisiblePosition visibleDownstreamPos(Position(position.node(), downstream + 1));
438 isEndOfParagraph(visibleDownstreamPos) || (unsigned)downstream == text.length() - 1);
459 deleteInsignificantText(position.upstream(), position.downstream());
460 position = upstreamPos.downstream();
    [all...]

Completed in 17 milliseconds