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

  /external/webkit/Source/WebCore/rendering/
RenderBR.cpp 66 int RenderBR::caretMaxOffset() const
InlineBox.cpp 115 int InlineBox::caretMaxOffset() const
117 return m_renderer->caretMaxOffset();
InlineTextBox.cpp     [all...]
RenderText.cpp     [all...]
RenderObject.cpp     [all...]
  /external/webkit/Source/WebCore/editing/
VisiblePosition.cpp 130 int caretMaxOffset = box->caretMaxOffset();
132 if (offset > caretMinOffset && offset < caretMaxOffset)
135 if (box->isLeftToRightDirection() ? offset < caretMinOffset : offset > caretMaxOffset) {
169 offset = primaryDirection == LTR ? box->caretMinOffset() : box->caretMaxOffset();
227 offset = primaryDirection == LTR ? box->caretMinOffset() : box->caretMaxOffset();
281 int caretMaxOffset = box->caretMaxOffset();
283 if (offset > caretMinOffset && offset < caretMaxOffset)
286 if (box->isLeftToRightDirection() ? offset > caretMaxOffset : offset < caretMinOffset)
    [all...]
htmlediting.cpp 979 int caretMaxOffset(const Node* n)
983 return n->renderer()->caretMaxOffset();
    [all...]
  /external/webkit/Source/WebCore/dom/
Position.cpp 526 PositionIterator lastVisible = m_anchorType == PositionIsAfterAnchor ? Position(m_anchorNode, caretMaxOffset(m_anchorNode.get())) : *this;
585 //ASSERT(currentOffset >= renderer->caretMaxOffset());
586 return Position(currentNode, renderer->caretMaxOffset());
648 PositionIterator lastVisible = m_anchorType == PositionIsAfterAnchor ? Position(m_anchorNode, caretMaxOffset(m_anchorNode.get())) : *this;
    [all...]

Completed in 125 milliseconds