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

  /external/webkit/Source/WebCore/rendering/
RenderBR.cpp 66 int RenderBR::caretMaxOffset() const
RenderBR.h 52 virtual int caretMaxOffset() const;
InlineBox.h 272 virtual int caretMaxOffset() const;
279 int caretLeftmostOffset() const { return isLeftToRightDirection() ? caretMinOffset() : caretMaxOffset(); }
280 int caretRightmostOffset() const { return isLeftToRightDirection() ? caretMaxOffset() : caretMinOffset(); }
InlineBox.cpp 115 int InlineBox::caretMaxOffset() const
117 return m_renderer->caretMaxOffset();
InlineTextBox.h 133 virtual int caretMaxOffset() const;
RenderText.h 111 virtual int caretMaxOffset() const;
RenderReplaced.cpp 302 return createVisiblePosition(caretMaxOffset(), DOWNSTREAM); // coordinates are below
RenderObject.h     [all...]
InlineTextBox.cpp     [all...]
RenderText.cpp     [all...]
RenderBlock.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...]
InsertLineBreakCommand.cpp 135 } else if (pos.deprecatedEditingOffset() >= caretMaxOffset(pos.deprecatedNode()) || !pos.deprecatedNode()->isTextNode()) {
DeleteSelectionCommand.cpp 441 if (startOffset >= caretMaxOffset(startNode) && startNode->isTextNode()) {
443 if (text->length() > (unsigned)caretMaxOffset(startNode))
444 deleteTextFromNode(text, caretMaxOffset(startNode), text->length() - caretMaxOffset(startNode));
509 if (m_downstreamEnd.deprecatedNode() == n && m_downstreamEnd.deprecatedEditingOffset() >= caretMaxOffset(n)) {
    [all...]
visible_units.cpp 545 Position maxPos(n, caretMaxOffset(n));
    [all...]
htmlediting.h 77 int caretMaxOffset(const Node*);
ApplyStyleCommand.cpp 347 if (startNode->isTextNode() && start.deprecatedEditingOffset() >= caretMaxOffset(startNode)) // Move out of text node if range does not include its characters.
663 if (start.deprecatedEditingOffset() >= caretMaxOffset(start.deprecatedNode())) {
670 if (end.deprecatedEditingOffset() >= caretMaxOffset(end.deprecatedNode()))
    [all...]
htmlediting.cpp 979 int caretMaxOffset(const Node* n)
983 return n->renderer()->caretMaxOffset();
    [all...]
CompositeEditCommand.cpp 176 else if (refChild->isTextNode() && caretMaxOffset(refChild) > offset) {
358 if (pos.offsetInContainerNode() >= caretMaxOffset(pos.containerNode()))
    [all...]
TextIterator.cpp 854 int offset = caretMaxOffset(node);
    [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...]
  /external/webkit/Source/WebCore/page/
DOMSelection.cpp 353 if (offset < 0 || offset > (node->offsetInCharacters() ? caretMaxOffset(node) : (int)node->childNodeCount())) {
  /external/webkit/Source/WebKit/android/jni/
WebViewCore.cpp     [all...]

Completed in 166 milliseconds