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.h 52 virtual int caretMaxOffset() const;
RenderBR.cpp 71 int RenderBR::caretMaxOffset() const
InlineBox.h 245 virtual int caretMaxOffset() const;
251 int caretLeftmostOffset() const { return isLeftToRightDirection() ? caretMinOffset() : caretMaxOffset(); }
252 int caretRightmostOffset() const { return isLeftToRightDirection() ? caretMaxOffset() : caretMinOffset(); }
InlineBox.cpp 153 int InlineBox::caretMaxOffset() const
155 return m_renderer->caretMaxOffset();
InlineTextBox.h 154 virtual int caretMaxOffset() const OVERRIDE FINAL;
RenderText.h 124 virtual int caretMaxOffset() const;
RenderText.cpp 577 box->isLeftToRightDirection() ? rightmostBox->caretMaxOffset() : rightmostBox->caretMinOffset(), shouldAffinityBeDownstream);
608 box->isLeftToRightDirection() ? leftmostBox->caretMinOffset() : leftmostBox->caretMaxOffset(), shouldAffinityBeDownstream);
    [all...]
RenderReplaced.cpp 537 return createPositionWithAffinity(caretMaxOffset(), DOWNSTREAM); // coordinates are below
RenderObject.h     [all...]
InlineTextBox.cpp     [all...]
RenderBlock.cpp     [all...]
RenderObject.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
VisiblePosition.cpp 157 int caretMaxOffset = box->caretMaxOffset();
159 if (offset > caretMinOffset && offset < caretMaxOffset)
162 if (box->isLeftToRightDirection() ? offset < caretMinOffset : offset > caretMaxOffset) {
196 offset = primaryDirection == LTR ? box->caretMinOffset() : box->caretMaxOffset();
257 offset = primaryDirection == LTR ? box->caretMinOffset() : box->caretMaxOffset();
322 int caretMaxOffset = box->caretMaxOffset();
324 if (offset > caretMinOffset && offset < caretMaxOffset)
327 if (box->isLeftToRightDirection() ? offset > caretMaxOffset : offset < caretMinOffset)
    [all...]
InsertLineBreakCommand.cpp 137 } else if (pos.deprecatedEditingOffset() >= caretMaxOffset(pos.deprecatedNode()) || !pos.deprecatedNode()->isTextNode()) {
DeleteSelectionCommand.cpp 464 if (startOffset >= caretMaxOffset(startNode) && startNode->isTextNode()) {
466 if (text->length() > (unsigned)caretMaxOffset(startNode))
467 deleteTextFromNode(text, caretMaxOffset(startNode), text->length() - caretMaxOffset(startNode));
528 if (m_downstreamEnd.deprecatedNode() == n && m_downstreamEnd.deprecatedEditingOffset() >= caretMaxOffset(&n)) {
    [all...]
htmlediting.h 78 int caretMaxOffset(const Node*);
ApplyStyleCommand.cpp 361 if (startNode->isTextNode() && start.deprecatedEditingOffset() >= caretMaxOffset(startNode)) // Move out of text node if range does not include its characters.
677 if (start.deprecatedEditingOffset() >= caretMaxOffset(start.deprecatedNode())) {
684 if (end.deprecatedEditingOffset() >= caretMaxOffset(end.deprecatedNode()))
    [all...]
InsertParagraphSeparatorCommand.cpp 397 if (splitTo->isTextNode() && insertionPosition.offsetInContainerNode() >= caretMaxOffset(splitTo))
htmlediting.cpp 982 int caretMaxOffset(const Node* n)
986 return n->renderer()->caretMaxOffset();
    [all...]
VisibleUnits.cpp 93 createLegacyEditingPosition(previousNode, caretMaxOffset(previousNode));
384 else if (offsetInBox == box->caretMaxOffset())
    [all...]
CompositeEditCommand.cpp 375 else if (refChild->isTextNode() && caretMaxOffset(refChild) > offset) {
573 if (pos.offsetInContainerNode() >= caretMaxOffset(pos.containerNode()))
    [all...]
TextIterator.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Position.cpp 592 PositionIterator lastVisible = m_anchorType == PositionIsAfterAnchor ? createLegacyEditingPosition(m_anchorNode.get(), caretMaxOffset(m_anchorNode.get())) : *this;
651 //ASSERT(currentOffset >= renderer->caretMaxOffset());
652 return createLegacyEditingPosition(currentNode, renderer->caretMaxOffset());
715 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 355 if (offset > (node->offsetInCharacters() ? caretMaxOffset(node) : (int)node->childNodeCount())) {

Completed in 790 milliseconds