Home | History | Annotate | Download | only in rendering

Lines Matching full:leaf

1037     InlineBox* leaf = 0;
1038 for (InlineBox* child = firstChild(); child && !leaf; child = child->nextOnLine())
1039 leaf = child->isLeaf() ? child : static_cast<InlineFlowBox*>(child)->firstLeafChild();
1040 return leaf;
1045 InlineBox* leaf = 0;
1046 for (InlineBox* child = lastChild(); child && !leaf; child = child->prevOnLine())
1047 leaf = child->isLeaf() ? child : static_cast<InlineFlowBox*>(child)->lastLeafChild();
1048 return leaf;