Home | History | Annotate | Download | only in rendering

Lines Matching defs:leaf

1242     InlineBox* leaf = 0;
1243 for (InlineBox* child = firstChild(); child && !leaf; child = child->nextOnLine())
1244 leaf = child->isLeaf() ? child : static_cast<InlineFlowBox*>(child)->firstLeafChild();
1245 return leaf;
1250 InlineBox* leaf = 0;
1251 for (InlineBox* child = lastChild(); child && !leaf; child = child->prevOnLine())
1252 leaf = child->isLeaf() ? child : static_cast<InlineFlowBox*>(child)->lastLeafChild();
1253 return leaf;
1382 InlineBox* leaf = firstLeafChild();
1389 // First find highest and lowest levels, and initialize leafBoxesInLogicalOrder with the leaf boxes in visual order.
1390 for (; leaf; leaf = leaf->nextLeafChild()) {
1391 minLevel = min(minLevel, leaf->bidiLevel());
1392 maxLevel = max(maxLevel, leaf->bidiLevel());
1393 leafBoxesInLogicalOrder.append(leaf);