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

  /external/webkit/Source/WebCore/rendering/
RenderBR.cpp 61 int RenderBR::caretMinOffset() const
RenderBR.h 51 virtual int caretMinOffset() const;
InlineBox.h 271 virtual int caretMinOffset() const;
279 int caretLeftmostOffset() const { return isLeftToRightDirection() ? caretMinOffset() : caretMaxOffset(); }
280 int caretRightmostOffset() const { return isLeftToRightDirection() ? caretMaxOffset() : caretMinOffset(); }
InlineBox.cpp 110 int InlineBox::caretMinOffset() const
112 return m_renderer->caretMinOffset();
InlineTextBox.h 132 virtual int caretMinOffset() const;
RenderText.h 110 virtual int caretMinOffset() const;
RenderReplaced.cpp 299 return createVisiblePosition(caretMinOffset(), DOWNSTREAM); // coordinates are above
RenderObject.h     [all...]
RenderObject.cpp     [all...]
InlineTextBox.cpp     [all...]
RenderText.cpp     [all...]
RenderBlock.cpp     [all...]
  /external/webkit/Source/WebCore/editing/
VisiblePosition.cpp 129 int caretMinOffset = box->caretMinOffset();
132 if (offset > caretMinOffset && offset < caretMaxOffset)
135 if (box->isLeftToRightDirection() ? offset < caretMinOffset : offset > caretMaxOffset) {
169 offset = primaryDirection == LTR ? box->caretMinOffset() : box->caretMaxOffset();
227 offset = primaryDirection == LTR ? box->caretMinOffset() : box->caretMaxOffset();
280 int caretMinOffset = box->caretMinOffset();
283 if (offset > caretMinOffset && offset < caretMaxOffset)
286 if (box->isLeftToRightDirection() ? offset > caretMaxOffset : offset < caretMinOffset) {
    [all...]
InsertLineBreakCommand.cpp 125 } else if (pos.deprecatedEditingOffset() <= caretMinOffset(pos.deprecatedNode())) {
visible_units.cpp 540 Position pos(n, caretMinOffset(n));
651 Position pos(n, caretMinOffset(n));
    [all...]
htmlediting.h 76 int caretMinOffset(const Node*);
htmlediting.cpp 970 int caretMinOffset(const Node* n)
974 return r ? r->caretMinOffset() : 0;
    [all...]
CompositeEditCommand.cpp 174 } else if (caretMinOffset(refChild) >= offset)
355 if (pos.offsetInContainerNode() <= caretMinOffset(pos.containerNode()))
    [all...]
DeleteSelectionCommand.cpp 517 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/webkit/Source/WebCore/dom/
Position.cpp 700 if (currentPos.offsetInLeafNode() <= renderer->caretMinOffset())
701 return Position(currentNode, renderer->caretMinOffset());
709 return Position(currentNode, renderer->caretMinOffset());
    [all...]
  /external/webkit/Source/WebKit/android/jni/
WebViewCore.cpp     [all...]

Completed in 223 milliseconds