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

/external/webkit/Source/WebCore/editing/
H A DTextIterator.h116 void emitCharacter(UChar, Node* textNode, Node* offsetBaseNode, int textStartOffset, int textEndOffset);
117 void emitText(Node* textNode, RenderObject* renderObject, int textStartOffset, int textEndOffset);
118 void emitText(Node* textNode, int textStartOffset, int textEndOffset);
H A DTextIterator.cpp952 void TextIterator::emitCharacter(UChar c, Node* textNode, Node* offsetBaseNode, int textStartOffset, int textEndOffset) argument
960 m_positionStartOffset = textStartOffset;
973 void TextIterator::emitText(Node* textNode, RenderObject* renderObject, int textStartOffset, int textEndOffset) argument
981 m_positionStartOffset = textStartOffset;
983 m_textCharacters = m_text.characters() + textStartOffset;
984 m_textLength = textEndOffset - textStartOffset;
991 void TextIterator::emitText(Node* textNode, int textStartOffset, int textEndOffset) argument
993 emitText(textNode, m_node->renderer(), textStartOffset, textEndOffset);

Completed in 80 milliseconds