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

  /external/webkit/WebCore/editing/
TextAffinity.h 41 enum EAffinity { UPSTREAM = 0, DOWNSTREAM = 1 };
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...]
  /external/webkit/WebCore/page/
FocusController.cpp 251 VisibleSelection newSelection(Position(node, 0), Position(node, 0), DOWNSTREAM);

Completed in 1125 milliseconds