Searched refs:textStartOffset (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderTextFragment.h46 virtual unsigned textStartOffset() const OVERRIDE { return start(); }
H A DRenderText.h59 virtual unsigned textStartOffset() const { return 0; } function in class:WebCore::RenderText
H A DRenderText.cpp522 int textStartOffset = box->renderer().isText() ? toRenderText(box->renderer()).textStartOffset() : 0; local
523 return box->renderer().createPositionWithAffinity(offset + textStartOffset, affinity);
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DTextIterator.h143 void emitCharacter(UChar, Node* textNode, Node* offsetBaseNode, int textStartOffset, int textEndOffset);
144 void emitText(Node* textNode, RenderObject* renderObject, int textStartOffset, int textEndOffset);
145 void emitText(Node* textNode, int textStartOffset, int textEndOffset);
H A DTextIterator.cpp1118 void TextIterator::emitCharacter(UChar c, Node* textNode, Node* offsetBaseNode, int textStartOffset, int textEndOffset) argument
1126 m_positionStartOffset = textStartOffset;
1139 void TextIterator::emitText(Node* textNode, RenderObject* renderObject, int textStartOffset, int textEndOffset) argument
1144 ASSERT(0 <= textStartOffset && textStartOffset < static_cast<int>(m_text.length()));
1146 ASSERT(textStartOffset <= textEndOffset);
1150 m_positionStartOffset = textStartOffset;
1153 m_textLength = textEndOffset - textStartOffset;
1160 void TextIterator::emitText(Node* textNode, int textStartOffset, int textEndOffset) argument
1162 emitText(textNode, m_node->renderer(), textStartOffset, textEndOffse
[all...]

Completed in 107 milliseconds