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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderBR.cpp 61 int RenderBR::caretMaxOffset() const
RenderBR.h 50 virtual int caretMaxOffset() const OVERRIDE;
InlineBox.h 248 virtual int caretMaxOffset() const;
254 int caretLeftmostOffset() const { return isLeftToRightDirection() ? caretMinOffset() : caretMaxOffset(); }
255 int caretRightmostOffset() const { return isLeftToRightDirection() ? caretMaxOffset() : caretMinOffset(); }
InlineBox.cpp 154 int InlineBox::caretMaxOffset() const
156 return renderer().caretMaxOffset();
InlineTextBox.h 154 virtual int caretMaxOffset() const OVERRIDE FINAL;
RenderText.h 127 virtual int caretMaxOffset() const OVERRIDE;
RenderText.cpp 562 box->isLeftToRightDirection() ? rightmostBox->caretMaxOffset() : rightmostBox->caretMinOffset(), shouldAffinityBeDownstream);
593 box->isLeftToRightDirection() ? leftmostBox->caretMinOffset() : leftmostBox->caretMaxOffset(), shouldAffinityBeDownstream);
    [all...]
RenderReplaced.cpp 521 return createPositionWithAffinity(caretMaxOffset(), DOWNSTREAM); // coordinates are below
RenderBlock.cpp     [all...]
RenderObject.h     [all...]
InlineTextBox.cpp     [all...]
RenderObject.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
VisiblePosition.cpp 156 int caretMaxOffset = box->caretMaxOffset();
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();
323 if (offset > caretMinOffset && offset < caretMaxOffset)
326 if (box->isLeftToRightDirection() ? offset > caretMaxOffset : offset < caretMinOffset)
    [all...]
InsertLineBreakCommand.cpp 112 } else if (pos.deprecatedEditingOffset() >= caretMaxOffset(pos.deprecatedNode()) || !pos.deprecatedNode()->isTextNode()) {
DeleteSelectionCommand.cpp 460 if (startOffset >= caretMaxOffset(startNode) && startNode->isTextNode()) {
462 if (text->length() > (unsigned)caretMaxOffset(startNode))
463 deleteTextFromNode(text, caretMaxOffset(startNode), text->length() - caretMaxOffset(startNode));
524 if (m_downstreamEnd.deprecatedNode() == n && m_downstreamEnd.deprecatedEditingOffset() >= caretMaxOffset(&n)) {
    [all...]
htmlediting.h 78 int caretMaxOffset(const Node*);
ApplyStyleCommand.cpp 373 if (startNode->isTextNode() && start.deprecatedEditingOffset() >= caretMaxOffset(startNode)) // Move out of text node if range does not include its characters.
690 if (start.deprecatedEditingOffset() >= caretMaxOffset(start.deprecatedNode())) {
697 if (end.deprecatedEditingOffset() >= caretMaxOffset(end.deprecatedNode()))
    [all...]
InsertParagraphSeparatorCommand.cpp 397 if (splitTo->isTextNode() && insertionPosition.offsetInContainerNode() >= caretMaxOffset(splitTo))
htmlediting.cpp 943 int caretMaxOffset(const Node* n)
947 return n->renderer()->caretMaxOffset();
    [all...]
VisibleUnits.cpp 95 createLegacyEditingPosition(previousNode, caretMaxOffset(previousNode));
386 else if (offsetInBox == box->caretMaxOffset())
    [all...]
CompositeEditCommand.cpp 345 else if (refChild->isTextNode() && caretMaxOffset(refChild) > offset) {
544 if (pos.offsetInContainerNode() >= caretMaxOffset(pos.containerNode()))
    [all...]
TextIterator.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Position.cpp 567 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;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
DOMSelection.cpp 351 if (offset > (node->offsetInCharacters() ? caretMaxOffset(node) : (int)node->countChildren())) {

Completed in 831 milliseconds