Searched defs:caretMaxOffset (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderBR.cpp70 int RenderBR::caretMaxOffset() const function in class:WebCore::RenderBR
H A DInlineBox.cpp157 int InlineBox::caretMaxOffset() const function in class:WebCore::InlineBox
159 return m_renderer->caretMaxOffset();
H A DInlineTextBox.cpp1414 int InlineTextBox::caretMaxOffset() const function in class:WebCore::InlineTextBox
H A DRenderText.cpp572 box->isLeftToRightDirection() ? rightmostBox->caretMaxOffset() : rightmostBox->caretMinOffset(), shouldAffinityBeDownstream);
603 box->isLeftToRightDirection() ? leftmostBox->caretMinOffset() : leftmostBox->caretMaxOffset(), shouldAffinityBeDownstream);
1633 int RenderText::caretMaxOffset() const function in class:WebCore::RenderText
H A DRenderObject.cpp3029 int RenderObject::caretMaxOffset() const function in class:WebCore::RenderObject
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DVisiblePosition.cpp146 int caretMaxOffset = box->caretMaxOffset(); local
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(); local
313 if (offset > caretMinOffset && offset < caretMaxOffset)
316 if (box->isLeftToRightDirection() ? offset > caretMaxOffset
[all...]
H A Dhtmlediting.cpp991 int caretMaxOffset(const Node* n) function in namespace:WebCore
995 return n->renderer()->caretMaxOffset();
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DPosition.cpp596 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;
1029 LOG(Editing, "node min/max: %d:%d\n", caretMinOffset(deprecatedNode()), caretMaxOffset(deprecatedNode()));
1030 LOG(Editing, "pos node min/max: %d:%d\n", caretMinOffset(pos.deprecatedNode()), caretMaxOffset(pos.deprecatedNode()));
1042 && thisRenderedOffset == caretMaxOffset(deprecatedNode()) && !posRenderedOffset) {
1047 && !thisRenderedOffset && posRenderedOffset == caretMaxOffset(pos.deprecatedNode())) {
1178 if (!inlineBox || (caretOffset > inlineBox->caretMinOffset() && caretOffset < inlineBox->caretMaxOffset()))
1189 int caretMaxOffset local
[all...]

Completed in 230 milliseconds