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

  /external/webkit/WebCore/rendering/
RenderBR.h 52 virtual int caretMinOffset() const;
RenderBR.cpp 80 int RenderBR::caretMinOffset() const
InlineBox.h 211 virtual int caretMinOffset() const;
218 int caretLeftmostOffset() const { return direction() == LTR ? caretMinOffset() : caretMaxOffset(); }
219 int caretRightmostOffset() const { return direction() == LTR ? caretMaxOffset() : caretMinOffset(); }
InlineTextBox.h 104 virtual int caretMinOffset() const;
InlineBox.cpp 109 int InlineBox::caretMinOffset() const
111 return m_renderer->caretMinOffset();
RenderText.h 107 virtual int caretMinOffset() const;
RenderReplaced.cpp 243 return createVisiblePosition(caretMinOffset(), DOWNSTREAM); // coordinates are above
RenderObject.h     [all...]
RenderObject.cpp     [all...]
InlineTextBox.cpp     [all...]
RenderBlock.cpp     [all...]
RenderText.cpp     [all...]
  /external/webkit/WebCore/dom/
Position.cpp 653 if (currentPos.offsetInLeafNode() <= renderer->caretMinOffset())
654 return Position(currentNode, renderer->caretMinOffset());
662 return Position(currentNode, renderer->caretMinOffset());
883 LOG(Editing, "node min/max: %d:%d\n", caretMinOffset(node()), caretMaxRenderedOffset(node()));
884 LOG(Editing, "pos node min/max: %d:%d\n", caretMinOffset(pos.node()), caretMaxRenderedOffset(pos.node()));
    [all...]
  /external/webkit/WebCore/editing/
VisiblePosition.cpp 136 int caretMinOffset = box->caretMinOffset();
139 if (offset > caretMinOffset && offset < caretMaxOffset)
142 if (box->direction() == LTR ? offset < caretMinOffset : offset > caretMaxOffset) {
219 offset = primaryDirection == LTR ? box->caretMinOffset() : box->caretMaxOffset();
278 int caretMinOffset = box->caretMinOffset();
281 if (offset > caretMinOffset && offset < caretMaxOffset)
284 if (box->direction() == LTR ? offset > caretMaxOffset : offset < caretMinOffset) {
362 offset = primaryDirection == LTR ? box->caretMaxOffset() : box->caretMinOffset();
    [all...]
InsertLineBreakCommand.cpp 121 } else if (pos.deprecatedEditingOffset() <= caretMinOffset(pos.node())) {
htmlediting.h 75 int caretMinOffset(const Node*);
visible_units.cpp 587 Position pos(n, caretMinOffset(n));
689 Position pos(n, caretMinOffset(n));
    [all...]
htmlediting.cpp 1007 int caretMinOffset(const Node* n)
    [all...]
ApplyStyleCommand.cpp     [all...]
DeleteSelectionCommand.cpp 484 if (m_downstreamEnd.node() != startNode && !m_upstreamStart.node()->isDescendantOf(m_downstreamEnd.node()) && m_downstreamEnd.node()->inDocument() && m_downstreamEnd.deprecatedEditingOffset() >= caretMinOffset(m_downstreamEnd.node())) {
    [all...]
CompositeEditCommand.cpp 171 } else if (caretMinOffset(refChild) >= offset)
345 if (pos.deprecatedEditingOffset() <= caretMinOffset(pos.node()))
    [all...]

Completed in 85 milliseconds