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 63 int RenderBR::caretMaxOffset() const
RenderBR.h 50 virtual int caretMaxOffset() const OVERRIDE;
InlineBox.h 249 virtual int caretMaxOffset() const;
255 int caretLeftmostOffset() const { return isLeftToRightDirection() ? caretMinOffset() : caretMaxOffset(); }
256 int caretRightmostOffset() const { return isLeftToRightDirection() ? caretMaxOffset() : caretMinOffset(); }
InlineBox.cpp 154 int InlineBox::caretMaxOffset() const
156 return renderer().caretMaxOffset();
InlineTextBox.h 148 virtual int caretMaxOffset() const OVERRIDE FINAL;
RenderText.h 126 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 487 return createPositionWithAffinity(caretMaxOffset(), DOWNSTREAM); // coordinates are below
RenderBlock.cpp     [all...]
InlineTextBox.cpp     [all...]
RenderObject.h     [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 114 } 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 86 int caretMaxOffset(const Node*);
ApplyStyleCommand.cpp 375 if (startNode->isTextNode() && start.deprecatedEditingOffset() >= caretMaxOffset(startNode)) // Move out of text node if range does not include its characters.
692 if (start.deprecatedEditingOffset() >= caretMaxOffset(start.deprecatedNode())) {
699 if (end.deprecatedEditingOffset() >= caretMaxOffset(end.deprecatedNode()))
    [all...]
DOMSelection.cpp 347 if (offset > (node->offsetInCharacters() ? caretMaxOffset(node) : (int)node->countChildren())) {
InsertParagraphSeparatorCommand.cpp 400 if (splitTo->isTextNode() && insertionPosition.offsetInContainerNode() >= caretMaxOffset(splitTo))
VisibleUnits.cpp 95 createLegacyEditingPosition(previousNode, caretMaxOffset(previousNode));
386 else if (offsetInBox == box->caretMaxOffset())
    [all...]
htmlediting.cpp     [all...]
CompositeEditCommand.cpp 351 else if (refChild->isTextNode() && caretMaxOffset(refChild) > offset) {
555 if (pos.offsetInContainerNode() >= caretMaxOffset(pos.containerNode()))
    [all...]
TextIterator.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Position.cpp 539 PositionIterator lastVisible = m_anchorType == PositionIsAfterAnchor ? createLegacyEditingPosition(m_anchorNode.get(), caretMaxOffset(m_anchorNode.get())) : *this;
598 //ASSERT(currentOffset >= renderer->caretMaxOffset());
599 return createLegacyEditingPosition(currentNode, renderer->caretMaxOffset());
662 PositionIterator lastVisible = m_anchorType == PositionIsAfterAnchor ? createLegacyEditingPosition(m_anchorNode.get(), caretMaxOffset(m_anchorNode.get())) : *this;
    [all...]

Completed in 281 milliseconds