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 56 int RenderBR::caretMinOffset() const
RenderBR.h 49 virtual int caretMinOffset() const OVERRIDE;
InlineBox.h 247 virtual int caretMinOffset() const;
254 int caretLeftmostOffset() const { return isLeftToRightDirection() ? caretMinOffset() : caretMaxOffset(); }
255 int caretRightmostOffset() const { return isLeftToRightDirection() ? caretMaxOffset() : caretMinOffset(); }
InlineBox.cpp 149 int InlineBox::caretMinOffset() const
151 return renderer().caretMinOffset();
InlineTextBox.h 153 virtual int caretMinOffset() const OVERRIDE FINAL;
RenderText.h 126 virtual int caretMinOffset() const OVERRIDE;
RenderText.cpp 519 affinity = offset > box->caretMinOffset() ? VP_UPSTREAM_IF_POSSIBLE : DOWNSTREAM;
562 box->isLeftToRightDirection() ? rightmostBox->caretMaxOffset() : rightmostBox->caretMinOffset(), shouldAffinityBeDownstream);
593 box->isLeftToRightDirection() ? leftmostBox->caretMinOffset() : leftmostBox->caretMaxOffset(), shouldAffinityBeDownstream);
    [all...]
RenderReplaced.cpp 518 return createPositionWithAffinity(caretMinOffset(), DOWNSTREAM); // coordinates are above
RenderBlock.cpp     [all...]
RenderObject.h     [all...]
InlineTextBox.cpp     [all...]
RenderObject.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Position.cpp 742 if (currentPos.offsetInLeafNode() <= renderer->caretMinOffset())
743 return createLegacyEditingPosition(currentNode, renderer->caretMinOffset());
751 return createLegacyEditingPosition(currentNode, renderer->caretMinOffset());
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
VisiblePosition.cpp 155 int caretMinOffset = box->caretMinOffset();
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();
320 int caretMinOffset = box->caretMinOffset();
323 if (offset > caretMinOffset && offset < caretMaxOffset)
326 if (box->isLeftToRightDirection() ? offset > caretMaxOffset : offset < caretMinOffset) {
    [all...]
InsertLineBreakCommand.cpp 102 } else if (pos.deprecatedEditingOffset() <= caretMinOffset(pos.deprecatedNode())) {
htmlediting.h 77 int caretMinOffset(const Node*);
htmlediting.cpp 934 int caretMinOffset(const Node* n)
938 return r ? r->caretMinOffset() : 0;
    [all...]
TypingCommand.cpp 544 if (isRenderedTable(downstreamEnd.containerNode()) && downstreamEnd.computeOffsetInContainerNode() <= caretMinOffset(downstreamEnd.containerNode())) {
CompositeEditCommand.cpp 343 } else if (caretMinOffset(refChild) >= offset)
541 if (pos.offsetInContainerNode() <= caretMinOffset(pos.containerNode()))
    [all...]
VisibleUnits.cpp 117 pos = createLegacyEditingPosition(nextNode, caretMinOffset(nextNode));
384 if (offsetInBox == box->caretMinOffset())
    [all...]
DeleteSelectionCommand.cpp 533 if (m_downstreamEnd.deprecatedNode() != startNode && !m_upstreamStart.deprecatedNode()->isDescendantOf(m_downstreamEnd.deprecatedNode()) && m_downstreamEnd.inDocument() && m_downstreamEnd.deprecatedEditingOffset() >= caretMinOffset(m_downstreamEnd.deprecatedNode())) {
    [all...]
ApplyStyleCommand.cpp     [all...]

Completed in 312 milliseconds