Home
last modified time | relevance | path

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

/external/webkit/Source/WebCore/editing/
DTextIterator.h119 …void emitCharacter(UChar, Node* textNode, Node* offsetBaseNode, int textStartOffset, int textEndOf…
120 … void emitText(Node* textNode, RenderObject* renderObject, int textStartOffset, int textEndOffset);
121 void emitText(Node* textNode, int textStartOffset, int textEndOffset);
DTextIterator.cpp992 void TextIterator::emitCharacter(UChar c, Node* textNode, Node* offsetBaseNode, int textStartOffset in emitCharacter() argument
1000 m_positionStartOffset = textStartOffset; in emitCharacter()
1013 void TextIterator::emitText(Node* textNode, RenderObject* renderObject, int textStartOffset, int te… in emitText() argument
1021 m_positionStartOffset = textStartOffset; in emitText()
1023 m_textCharacters = m_text.characters() + textStartOffset; in emitText()
1024 m_textLength = textEndOffset - textStartOffset; in emitText()
1031 void TextIterator::emitText(Node* textNode, int textStartOffset, int textEndOffset) in emitText() argument
1033 emitText(textNode, m_node->renderer(), textStartOffset, textEndOffset); in emitText()