Home | History | Annotate | Download | only in rendering

Lines Matching refs:InlineTextBox

33 #include "InlineTextBox.h"
221 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox())
238 void RenderText::extractTextBox(InlineTextBox* box)
248 for (InlineTextBox* curr = box; curr; curr = curr->nextTextBox())
254 void RenderText::attachTextBox(InlineTextBox* box)
263 InlineTextBox* last = box;
264 for (InlineTextBox* curr = box; curr; curr = curr->nextTextBox()) {
273 void RenderText::removeTextBox(InlineTextBox* box)
293 InlineTextBox* next;
294 for (InlineTextBox* curr = firstTextBox(); curr; curr = next) {
310 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox())
317 // to mean "all the way to the end". InlineTextBox coordinates are unsigneds, so changing this
326 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox()) {
358 static IntRect ellipsisRectForBox(InlineTextBox* box, unsigned startPos, unsigned endPos)
384 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox()) {
407 // to mean "all the way to the end". InlineTextBox coordinates are unsigneds, so changing this
416 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox()) {
451 InlineTextBox* RenderText::findNextInlineTextBox(int offset, int& pos) const
461 InlineTextBox* s = m_firstTextBox;
497 InlineTextBox* lastBoxAbove = 0;
498 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox()) {
544 InlineTextBox* box = static_cast<InlineTextBox*>(inlineBox);
1004 InlineTextBox* box;
1052 for (InlineTextBox* curr = firstTextBox(); curr; curr = curr->nextTextBox()) {
1251 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox())
1257 InlineTextBox* RenderText::createTextBox()
1259 return new (renderArena()) InlineTextBox(this);
1262 InlineTextBox* RenderText::createInlineTextBox()
1264 InlineTextBox* textBox = createTextBox();
1278 InlineTextBox* s = static_cast<InlineTextBox*>(box);
1346 for (InlineTextBox* curr = firstTextBox(); curr; curr = curr->nextTextBox()) {
1373 for (InlineTextBox* curr = firstTextBox(); curr; curr = curr->nextTextBox()) {
1428 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox()) {
1447 InlineTextBox* box = firstTextBox();
1458 InlineTextBox* box = lastTextBox();
1470 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox())
1638 const InlineTextBox* prev = 0;
1639 for (const InlineTextBox* child = m_firstTextBox; child != 0; child = child->nextTextBox()) {