|   /external/webkit/Source/WebCore/editing/ | 
| TextAffinity.h  | 39 enum EAffinity { UPSTREAM = 0, DOWNSTREAM = 1 };
  | 
| VisiblePosition.h  | 39 // is cheaper than UPSTREAM 43 // but would like UPSTREAM if at a line break or DOWNSTREAM 45 // constructors auto-correct UPSTREAM to DOWNSTREAM if the 47 #define VP_UPSTREAM_IF_POSSIBLE UPSTREAM 53     // NOTE: UPSTREAM affinity will be used only if pos is at end of a wrapped line, 65     EAffinity affinity() const { ASSERT(m_affinity == UPSTREAM || m_affinity == DOWNSTREAM); return m_affinity; }
  | 
| VisibleSelection.h  | 71     VisiblePosition visibleEnd() const { return VisiblePosition(m_end, isRange() ? UPSTREAM : affinity()); } 93     // text, and moves the caret upstream before returning the range. 128     EAffinity m_affinity;           // the upstream/downstream affinity of the caret
  | 
| VisiblePosition.cpp  | 59     if (m_affinity == UPSTREAM && (isNull() || inSameLine(VisiblePosition(position, DOWNSTREAM), *this))) 91     // UPSTREAM position can never yield another UPSTREAM position (unless line wrap length is 0!). 92     if (prev.isNotNull() && m_affinity == UPSTREAM) { 94         temp.setAffinity(UPSTREAM); 465     Position upstream = candidate.upstream();  local  466     if (upstream.isCandidate()) 467         return upstream; 482     // unless the affinity is upstream     [all...] | 
| SelectionController.cpp  |     [all...] | 
| Editor.cpp  | 580         end = m_frame->selection()->selection().end().upstream(); 659         Node* endNode = m_frame->selection()->selection().end().upstream().deprecatedNode();     [all...] | 
|   /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/ | 
| WKBundleAPICast.h  | 93     case WebCore::UPSTREAM:
  | 
|   /external/webkit/Source/WebCore/dom/ | 
| Position.cpp  | 351     Position prevPosition = upstream(CanCrossEditingBoundary); 498 // upstream() and downstream() want to return positions that are either in a 515 // Also, upstream() will return [boundary, 0] for any of the positions from [boundary, 0] to the first candidate 517 Position Position::upstream(EditingBoundaryCrossingRule rule) const  function in class:WebCore::Position  633 // This function and upstream() are used for moving back and forth between visually equivalent candidates. 636 // and upstream() will return the left one.     [all...] | 
|   /external/webkit/Source/WebCore/rendering/ | 
| RenderTextControl.cpp  | 344     return VisiblePosition(Position(endContainer, endOffset, Position::PositionIsOffsetInAnchor), UPSTREAM);
  | 
| RenderTreeAsText.cpp  | 750         if (selection.affinity() == UPSTREAM) 751             ts << " (upstream affinity)";
  | 
| RenderBlock.cpp  |     [all...] | 
|   /external/webkit/Source/WebKit/chromium/src/ | 
| AssertMatchingEnums.cpp  | 373 COMPILE_ASSERT_MATCHING_ENUM(WebTextAffinityUpstream, UPSTREAM);
  | 
|   /external/webkit/Source/WebKit/gtk/WebCoreSupport/ | 
| EditorClientGtk.cpp  | 353     case UPSTREAM:     [all...] | 
|   /external/webkit/Source/WebCore/accessibility/ | 
| AccessibilityObject.cpp  | 181     // upstream is ordered before downstream for the same position 182     if (visiblePos1 == visiblePos2 && visiblePos2.affinity() == UPSTREAM)     [all...] | 
| AccessibilityRenderObject.cpp  |     [all...] |