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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderBR.cpp 63 int RenderBR::caretMaxOffset() const
InlineBox.cpp 154 int InlineBox::caretMaxOffset() const
156 return renderer().caretMaxOffset();
InlineTextBox.cpp     [all...]
RenderText.cpp 562 box->isLeftToRightDirection() ? rightmostBox->caretMaxOffset() : rightmostBox->caretMinOffset(), shouldAffinityBeDownstream);
593 box->isLeftToRightDirection() ? leftmostBox->caretMinOffset() : leftmostBox->caretMaxOffset(), shouldAffinityBeDownstream);
    [all...]
RenderObject.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
VisiblePosition.cpp 156 int caretMaxOffset = box->caretMaxOffset();
158 if (offset > caretMinOffset && offset < caretMaxOffset)
161 if (box->isLeftToRightDirection() ? offset < caretMinOffset : offset > caretMaxOffset) {
195 offset = primaryDirection == LTR ? box->caretMinOffset() : box->caretMaxOffset();
256 offset = primaryDirection == LTR ? box->caretMinOffset() : box->caretMaxOffset();
321 int caretMaxOffset = box->caretMaxOffset();
323 if (offset > caretMinOffset && offset < caretMaxOffset)
326 if (box->isLeftToRightDirection() ? offset > caretMaxOffset : offset < caretMinOffset)
    [all...]
htmlediting.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Position.cpp 539 PositionIterator lastVisible = m_anchorType == PositionIsAfterAnchor ? createLegacyEditingPosition(m_anchorNode.get(), caretMaxOffset(m_anchorNode.get())) : *this;
598 //ASSERT(currentOffset >= renderer->caretMaxOffset());
599 return createLegacyEditingPosition(currentNode, renderer->caretMaxOffset());
662 PositionIterator lastVisible = m_anchorType == PositionIsAfterAnchor ? createLegacyEditingPosition(m_anchorNode.get(), caretMaxOffset(m_anchorNode.get())) : *this;
    [all...]

Completed in 647 milliseconds