Home | History | Annotate | Download | only in rendering

Lines Matching refs:RootInlineBox

865 RootInlineBox* RenderBlock::createRootInlineBox() 
867 return new (renderArena()) RootInlineBox(this);
870 RootInlineBox* RenderBlock::createAndAppendRootInlineBox()
872 RootInlineBox* rootBox = createRootInlineBox();
2143 ListHashSet<RootInlineBox*> lineBoxes;
2150 RootInlineBox* box = toRenderBox(o)->inlineBoxWrapper()->root();
2160 for (ListHashSet<RootInlineBox*>::const_iterator it = lineBoxes.begin(); it != lineBoxes.end(); ++it) {
2161 RootInlineBox* box = *it;
2648 for (RootInlineBox* curr = firstRootBox(); curr; curr = curr->nextRootBox()) {
2919 RootInlineBox* lastSelectedLine = 0;
2920 RootInlineBox* curr;
3590 RootInlineBox* highest)
3595 RootInlineBox* lowestDirtyLine = lastRootBox();
3596 RootInlineBox* afterLowest = lowestDirtyLine;
4174 RootInlineBox* firstRootBoxWithChildren = 0;
4175 RootInlineBox* lastRootBoxWithChildren = 0;
4176 for (RootInlineBox* root = firstRootBox(); root; root = root->nextRootBox()) {
5293 for (RootInlineBox* root = firstRootBox(); root; root = root->nextRootBox()) {
5546 static RootInlineBox* getLineAtIndex(RenderBlock* block, int i, int& count)
5550 for (RootInlineBox* box = block->firstRootBox(); box; box = box->nextRootBox()) {
5558 RootInlineBox *box = getLineAtIndex(toRenderBlock(obj), i, count);
5572 for (RootInlineBox* box = block->firstRootBox(); box; box = box->nextRootBox()) {
5596 RootInlineBox* RenderBlock::lineAtIndex(int i)
5607 for (RootInlineBox* box = firstRootBox(); box; box = box->nextRootBox())
5629 for (RootInlineBox* box = firstRootBox(); box; box = box->nextRootBox()) {
5696 for (RootInlineBox* box = firstRootBox(); box; box = box->nextRootBox())
5941 for (RootInlineBox* curr = firstRootBox(); curr; curr = curr->nextRootBox()) {
6094 void RenderBlock::adjustLinePositionForPagination(RootInlineBox* lineBox, int& delta)