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

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderBR.cpp61 int RenderBR::caretMaxOffset() const function in class:WebCore::RenderBR
H A DInlineBox.cpp154 int InlineBox::caretMaxOffset() const function in class:WebCore::InlineBox
156 return renderer().caretMaxOffset();
H A DInlineTextBox.cpp1423 int InlineTextBox::caretMaxOffset() const function in class:WebCore::InlineTextBox
H A DRenderText.cpp562 box->isLeftToRightDirection() ? rightmostBox->caretMaxOffset() : rightmostBox->caretMinOffset(), shouldAffinityBeDownstream);
593 box->isLeftToRightDirection() ? leftmostBox->caretMinOffset() : leftmostBox->caretMaxOffset(), shouldAffinityBeDownstream);
1645 int RenderText::caretMaxOffset() const function in class:WebCore::RenderText
H A DRenderObject.cpp3267 int RenderObject::caretMaxOffset() const function in class:WebCore::RenderObject
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DVisiblePosition.cpp156 int caretMaxOffset = box->caretMaxOffset(); local
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(); local
323 if (offset > caretMinOffset && offset < caretMaxOffset)
326 if (box->isLeftToRightDirection() ? offset > caretMaxOffset
[all...]
H A Dhtmlediting.cpp943 int caretMaxOffset(const Node* n) function in namespace:WebCore
947 return n->renderer()->caretMaxOffset();
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DPosition.cpp567 PositionIterator lastVisible = m_anchorType == PositionIsAfterAnchor ? createLegacyEditingPosition(m_anchorNode.get(), caretMaxOffset(m_anchorNode.get())) : *this;
626 //ASSERT(currentOffset >= renderer->caretMaxOffset());
627 return createLegacyEditingPosition(currentNode, renderer->caretMaxOffset());
690 PositionIterator lastVisible = m_anchorType == PositionIsAfterAnchor ? createLegacyEditingPosition(m_anchorNode.get(), caretMaxOffset(m_anchorNode.get())) : *this;
1004 WTF_LOG(Editing, "node min/max: %d:%d\n", caretMinOffset(deprecatedNode()), caretMaxOffset(deprecatedNode()));
1005 WTF_LOG(Editing, "pos node min/max: %d:%d\n", caretMinOffset(pos.deprecatedNode()), caretMaxOffset(pos.deprecatedNode()));
1017 && thisRenderedOffset == caretMaxOffset(deprecatedNode()) && !posRenderedOffset) {
1022 && !thisRenderedOffset && posRenderedOffset == caretMaxOffset(pos.deprecatedNode())) {
1153 if (!inlineBox || (caretOffset > inlineBox->caretMinOffset() && caretOffset < inlineBox->caretMaxOffset()))
1164 int caretMaxOffset local
[all...]

Completed in 141 milliseconds