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 70 int RenderBR::caretMaxOffset() const
RenderBR.h 52 virtual int caretMaxOffset() const;
InlineBox.h 246 virtual int caretMaxOffset() const;
252 int caretLeftmostOffset() const { return isLeftToRightDirection() ? caretMinOffset() : caretMaxOffset(); }
253 int caretRightmostOffset() const { return isLeftToRightDirection() ? caretMaxOffset() : caretMinOffset(); }
InlineBox.cpp 157 int InlineBox::caretMaxOffset() const
159 return m_renderer->caretMaxOffset();
InlineTextBox.h 150 virtual int caretMaxOffset() const OVERRIDE FINAL;
RenderText.h 122 virtual int caretMaxOffset() const;
RenderText.cpp 572 box->isLeftToRightDirection() ? rightmostBox->caretMaxOffset() : rightmostBox->caretMinOffset(), shouldAffinityBeDownstream);
603 box->isLeftToRightDirection() ? leftmostBox->caretMinOffset() : leftmostBox->caretMaxOffset(), shouldAffinityBeDownstream);
    [all...]
RenderReplaced.cpp 483 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 146 int caretMaxOffset = box->caretMaxOffset();
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();
313 if (offset > caretMinOffset && offset < caretMaxOffset)
316 if (box->isLeftToRightDirection() ? offset > caretMaxOffset : offset < caretMinOffset)
    [all...]
InsertLineBreakCommand.cpp 137 } else if (pos.deprecatedEditingOffset() >= caretMaxOffset(pos.deprecatedNode()) || !pos.deprecatedNode()->isTextNode()) {
DeleteSelectionCommand.cpp 463 if (startOffset >= caretMaxOffset(startNode) && startNode->isTextNode()) {
465 if (text->length() > (unsigned)caretMaxOffset(startNode))
466 deleteTextFromNode(text, caretMaxOffset(startNode), text->length() - caretMaxOffset(startNode));
527 if (m_downstreamEnd.deprecatedNode() == n && m_downstreamEnd.deprecatedEditingOffset() >= caretMaxOffset(n)) {
    [all...]
htmlediting.h 79 int caretMaxOffset(const Node*);
InsertParagraphSeparatorCommand.cpp 377 if (splitTo->isTextNode() && insertionPosition.offsetInContainerNode() >= caretMaxOffset(splitTo))
ApplyStyleCommand.cpp 359 if (startNode->isTextNode() && start.deprecatedEditingOffset() >= caretMaxOffset(startNode)) // Move out of text node if range does not include its characters.
675 if (start.deprecatedEditingOffset() >= caretMaxOffset(start.deprecatedNode())) {
682 if (end.deprecatedEditingOffset() >= caretMaxOffset(end.deprecatedNode()))
    [all...]
htmlediting.cpp 991 int caretMaxOffset(const Node* n)
    [all...]
VisibleUnits.cpp 93 createLegacyEditingPosition(previousNode, caretMaxOffset(previousNode));
384 else if (offsetInBox == box->caretMaxOffset())
    [all...]
CompositeEditCommand.cpp 355 else if (refChild->isTextNode() && caretMaxOffset(refChild) > offset) {
553 if (pos.offsetInContainerNode() >= caretMaxOffset(pos.containerNode()))
    [all...]
TextIterator.cpp 855 int offset = caretMaxOffset(node);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Position.cpp 596 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;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
DOMSelection.cpp 346 if (offset < 0 || offset > (node->offsetInCharacters() ? caretMaxOffset(node) : (int)node->childNodeCount())) {

Completed in 137 milliseconds