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 70 int RenderBR::caretMaxOffset() const
InlineBox.cpp 157 int InlineBox::caretMaxOffset() const
159 return m_renderer->caretMaxOffset();
InlineTextBox.cpp     [all...]
RenderText.cpp 572 box->isLeftToRightDirection() ? rightmostBox->caretMaxOffset() : rightmostBox->caretMinOffset(), shouldAffinityBeDownstream);
603 box->isLeftToRightDirection() ? leftmostBox->caretMinOffset() : leftmostBox->caretMaxOffset(), shouldAffinityBeDownstream);
    [all...]
RenderObject.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
VisiblePosition.cpp 146 int caretMaxOffset = box->caretMaxOffset();
148 if (offset > caretMinOffset && offset < caretMaxOffset)
151 if (box->isLeftToRightDirection() ? offset < caretMinOffset : offset > caretMaxOffset) {
185 offset = primaryDirection == LTR ? box->caretMinOffset() : box->caretMaxOffset();
246 offset = primaryDirection == LTR ? box->caretMinOffset() : box->caretMaxOffset();
311 int caretMaxOffset = box->caretMaxOffset();
313 if (offset > caretMinOffset && offset < caretMaxOffset)
316 if (box->isLeftToRightDirection() ? offset > caretMaxOffset : offset < caretMinOffset)
    [all...]
htmlediting.cpp 991 int caretMaxOffset(const Node* n)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Position.cpp 596 PositionIterator lastVisible = m_anchorType == PositionIsAfterAnchor ? createLegacyEditingPosition(m_anchorNode.get(), caretMaxOffset(m_anchorNode.get())) : *this;
655 //ASSERT(currentOffset >= renderer->caretMaxOffset());
656 return createLegacyEditingPosition(currentNode, renderer->caretMaxOffset());
719 PositionIterator lastVisible = m_anchorType == PositionIsAfterAnchor ? createLegacyEditingPosition(m_anchorNode.get(), caretMaxOffset(m_anchorNode.get())) : *this;
    [all...]

Completed in 196 milliseconds