Searched defs:foundBox (Results 1 - 3 of 3) sorted by relevance

/external/webkit/Source/WebCore/rendering/
H A DRootInlineBox.cpp124 bool foundBox = false; local
125 ellipsisBox->m_x = placeEllipsisBox(ltr, blockLeftEdge, blockRightEdge, ellipsisWidth, foundBox);
128 float RootInlineBox::placeEllipsisBox(bool ltr, float blockLeftEdge, float blockRightEdge, float ellipsisWidth, bool& foundBox) argument
130 float result = InlineFlowBox::placeEllipsisBox(ltr, blockLeftEdge, blockRightEdge, ellipsisWidth, foundBox);
H A DInlineFlowBox.cpp1270 float InlineFlowBox::placeEllipsisBox(bool ltr, float blockLeftEdge, float blockRightEdge, float ellipsisWidth, bool& foundBox) argument
1273 // We iterate over all children, the foundBox variable tells us when we've found the
1279 // NOTE: these will cross after foundBox = true.
1284 int currResult = box->placeEllipsisBox(ltr, visibleLeftEdge, visibleRightEdge, ellipsisWidth, foundBox);
H A DInlineTextBox.cpp234 float InlineTextBox::placeEllipsisBox(bool flowIsLTR, float visibleLeftEdge, float visibleRightEdge, float ellipsisWidth, bool& foundBox) argument
236 if (foundBox) {
252 foundBox = true;
259 foundBox = true;

Completed in 207 milliseconds