HomeSort by relevance Sort by last modified time
    Searched refs:isBaseFirst (Results 1 - 5 of 5) sorted by null

  /external/webkit/Source/WebCore/editing/
VisibleSelection.h 80 bool isBaseFirst() const { return m_baseIsFirst; }
137 return a.start() == b.start() && a.end() == b.end() && a.affinity() == b.affinity() && a.isBaseFirst() == b.isBaseFirst();
SelectionController.cpp 253 if (m_selection.isBaseFirst())
311 bool shouldRemoveBase = shouldRemovePositionAfterAdoptingTextReplacement(base, m_selection.isBaseFirst() ? EndPointIsStart : EndPointIsEnd, node, offset, oldLength, newLength);
312 bool shouldRemoveExtent = shouldRemovePositionAfterAdoptingTextReplacement(extent, m_selection.isBaseFirst() ? EndPointIsEnd : EndPointIsStart, node, offset, oldLength, newLength);
322 if (newSelection.isBaseFirst())
359 if (m_selection.isBaseFirst())
402 // to which depends on the value of isBaseFirst. Then this can be changed
404 return m_selection.isBaseFirst() ? m_selection.visibleEnd() : m_selection.visibleStart();
    [all...]
DeleteSelectionCommand.cpp 164 if (startingSelection().isBaseFirst()) {
    [all...]
  /external/webkit/Source/WebCore/page/
DOMSelection.cpp 78 Position anchor = selection.isBaseFirst() ? selection.start() : selection.end();
84 Position focus = selection.isBaseFirst() ? selection.end() : selection.start();
  /external/webkit/Source/WebCore/accessibility/
AccessibilityObject.cpp 187 alreadyInOrder = VisibleSelection(visiblePos1, visiblePos2).isBaseFirst();
    [all...]

Completed in 3428 milliseconds