Home | History | Annotate | Download | only in rendering

Lines Matching refs:InlineBox

84                                   InlineBox* markupBox)
194 void RootInlineBox::childRemoved(InlineBox* box)
246 InlineBox* firstBox = firstSelectedBox();
247 InlineBox* lastBox = lastSelectedBox();
268 for (InlineBox* box = firstBox->nextLeafChild(); box; box = box->nextLeafChild()) {
296 for (InlineBox* box = firstLeafChild(); box; box = box->nextLeafChild()) {
312 InlineBox* RootInlineBox::firstSelectedBox()
314 for (InlineBox* box = firstLeafChild(); box; box = box->nextLeafChild()) {
322 InlineBox* RootInlineBox::lastSelectedBox()
324 for (InlineBox* box = lastLeafChild(); box; box = box->prevLeafChild()) {
359 static bool isEditableLeaf(InlineBox* leaf)
364 InlineBox* RootInlineBox::closestLeafChildForXPos(int x, bool onlyEditableLeaves)
366 InlineBox* firstLeaf = firstLeafChild();
367 InlineBox* lastLeaf = lastLeafChild();
382 InlineBox* closestLeaf = 0;
383 for (InlineBox* leaf = firstLeaf; leaf; leaf = leaf->nextLeafChild()) {