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

/external/webkit/Source/WebCore/editing/
H A DTextIterator.h119 void emitCharacter(UChar, Node* textNode, Node* offsetBaseNode, int textStartOffset, int textEndOffset);
120 void emitText(Node* textNode, RenderObject* renderObject, int textStartOffset, int textEndOffset);
121 void emitText(Node* textNode, int textStartOffset, int textEndOffset);
H A DTextIterator.cpp991 void TextIterator::emitCharacter(UChar c, Node* textNode, Node* offsetBaseNode, int textStartOffset, int textEndOffset) argument
1000 m_positionEndOffset = textEndOffset;
1012 void TextIterator::emitText(Node* textNode, RenderObject* renderObject, int textStartOffset, int textEndOffset) argument
1021 m_positionEndOffset = textEndOffset;
1023 m_textLength = textEndOffset - textStartOffset;
1024 m_lastCharacter = m_text[textEndOffset - 1];
1030 void TextIterator::emitText(Node* textNode, int textStartOffset, int textEndOffset) argument
1032 emitText(textNode, m_node->renderer(), textStartOffset, textEndOffset);

Completed in 68 milliseconds