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

  /external/webkit/WebCore/editing/
VisiblePosition.cpp 64 if (m_affinity == UPSTREAM && (isNull() || inSameLine(VisiblePosition(position, DOWNSTREAM), *this)))
92 // UPSTREAM position can never yield another UPSTREAM position (unless line wrap length is 0!).
93 if (prev.isNotNull() && m_affinity == UPSTREAM) {
95 temp.setAffinity(UPSTREAM);
448 Position upstream = candidate.upstream(); local
449 if (upstream.isCandidate())
450 return upstream;
460 // unless the affinity is upstream
    [all...]
CompositeEditCommand.cpp 418 // Set upstream and downstream to define the extent of the whitespace surrounding text[offset].
419 int upstream = offset; local
420 while (upstream > 0 && isWhitespace(text[upstream - 1]))
421 upstream--;
427 int length = downstream - upstream + 1;
430 VisiblePosition visibleUpstreamPos(Position(position.node(), upstream));
433 String string = text.substring(upstream, length);
437 isStartOfParagraph(visibleUpstreamPos) || upstream == 0,
441 replaceTextInNode(textNode, upstream, length, rebalancedString)
    [all...]
  /external/webkit/WebCore/dom/
Position.cpp 323 Position prevPosition = upstream(CanCrossEditingBoundary);
453 // upstream() and downstream() want to return positions that are either in a
470 // Also, upstream() will return [boundary, 0] for any of the positions from [boundary, 0] to the first candidate
472 Position Position::upstream(EditingBoundaryCrossingRule rule) const function in class:WebCore::Position
587 // This function and upstream() are used for moving back and forth between visually equivalent candidates.
590 // and upstream() will return the left one.
    [all...]
  /prebuilt/common/ecj/
ecj.jar 

Completed in 186 milliseconds