Searched refs:textStartOffset (Results 1 – 5 of 5) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
D | TextIterator.h | 143 …void emitCharacter(UChar, Node* textNode, Node* offsetBaseNode, int textStartOffset, int textEndOf… 144 … void emitText(Node* textNode, RenderObject* renderObject, int textStartOffset, int textEndOffset); 145 void emitText(Node* textNode, int textStartOffset, int textEndOffset);
|
D | TextIterator.cpp | 1118 void TextIterator::emitCharacter(UChar c, Node* textNode, Node* offsetBaseNode, int textStartOffset… in emitCharacter() argument 1126 m_positionStartOffset = textStartOffset; in emitCharacter() 1139 void TextIterator::emitText(Node* textNode, RenderObject* renderObject, int textStartOffset, int te… in emitText() argument 1144 ASSERT(0 <= textStartOffset && textStartOffset < static_cast<int>(m_text.length())); in emitText() 1146 ASSERT(textStartOffset <= textEndOffset); in emitText() 1150 m_positionStartOffset = textStartOffset; in emitText() 1153 m_textLength = textEndOffset - textStartOffset; in emitText() 1160 void TextIterator::emitText(Node* textNode, int textStartOffset, int textEndOffset) in emitText() argument 1162 emitText(textNode, m_node->renderer(), textStartOffset, textEndOffset); in emitText()
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
D | RenderTextFragment.h | 46 virtual unsigned textStartOffset() const OVERRIDE { return start(); } in textStartOffset() function
|
D | RenderText.h | 59 virtual unsigned textStartOffset() const { return 0; } in textStartOffset() function
|
D | RenderText.cpp | 522 …int textStartOffset = box->renderer().isText() ? toRenderText(box->renderer()).textStartOffset() :… in createPositionWithAffinityForBox() local 523 return box->renderer().createPositionWithAffinity(offset + textStartOffset, affinity); in createPositionWithAffinityForBox()
|