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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderBR.cpp 65 int RenderBR::caretMinOffset() const
RenderBR.h 51 virtual int caretMinOffset() const;
InlineBox.h 245 virtual int caretMinOffset() const;
252 int caretLeftmostOffset() const { return isLeftToRightDirection() ? caretMinOffset() : caretMaxOffset(); }
253 int caretRightmostOffset() const { return isLeftToRightDirection() ? caretMaxOffset() : caretMinOffset(); }
InlineBox.cpp 152 int InlineBox::caretMinOffset() const
154 return m_renderer->caretMinOffset();
InlineTextBox.h 149 virtual int caretMinOffset() const OVERRIDE FINAL;
RenderText.h 121 virtual int caretMinOffset() const;
RenderText.cpp 529 affinity = offset > box->caretMinOffset() ? VP_UPSTREAM_IF_POSSIBLE : DOWNSTREAM;
572 box->isLeftToRightDirection() ? rightmostBox->caretMaxOffset() : rightmostBox->caretMinOffset(), shouldAffinityBeDownstream);
603 box->isLeftToRightDirection() ? leftmostBox->caretMinOffset() : leftmostBox->caretMaxOffset(), shouldAffinityBeDownstream);
    [all...]
RenderReplaced.cpp 480 return createPositionWithAffinity(caretMinOffset(), DOWNSTREAM); // coordinates are above
RenderObject.h     [all...]
InlineTextBox.cpp     [all...]
RenderObject.cpp     [all...]
RenderBlock.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
VisiblePosition.cpp 145 int caretMinOffset = box->caretMinOffset();
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();
310 int caretMinOffset = box->caretMinOffset();
313 if (offset > caretMinOffset && offset < caretMaxOffset)
316 if (box->isLeftToRightDirection() ? offset > caretMaxOffset : offset < caretMinOffset) {
    [all...]
InsertLineBreakCommand.cpp 127 } else if (pos.deprecatedEditingOffset() <= caretMinOffset(pos.deprecatedNode())) {
htmlediting.h 78 int caretMinOffset(const Node*);
htmlediting.cpp 982 int caretMinOffset(const Node* n)
986 return r ? r->caretMinOffset() : 0;
    [all...]
TypingCommand.cpp 545 && downstreamEnd.computeOffsetInContainerNode() <= caretMinOffset(downstreamEnd.containerNode())) {
CompositeEditCommand.cpp 353 } else if (caretMinOffset(refChild) >= offset)
550 if (pos.offsetInContainerNode() <= caretMinOffset(pos.containerNode()))
    [all...]
VisibleUnits.cpp 115 pos = createLegacyEditingPosition(nextNode, caretMinOffset(nextNode));
382 if (offsetInBox == box->caretMinOffset())
    [all...]
DeleteSelectionCommand.cpp 535 if (m_downstreamEnd.deprecatedNode() != startNode && !m_upstreamStart.deprecatedNode()->isDescendantOf(m_downstreamEnd.deprecatedNode()) && m_downstreamEnd.anchorNode()->inDocument() && m_downstreamEnd.deprecatedEditingOffset() >= caretMinOffset(m_downstreamEnd.deprecatedNode())) {
    [all...]
ApplyStyleCommand.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Position.cpp 771 if (currentPos.offsetInLeafNode() <= renderer->caretMinOffset())
772 return createLegacyEditingPosition(currentNode, renderer->caretMinOffset());
780 return createLegacyEditingPosition(currentNode, renderer->caretMinOffset());
    [all...]

Completed in 320 milliseconds