Searched refs:foundBox (Results 1 - 5 of 5) sorted by relevance

/macosx-10.10/WebCore-7600.1.25/rendering/
H A DInlineTextBox.h131 virtual float placeEllipsisBox(bool flowIsLTR, float visibleLeftEdge, float visibleRightEdge, float ellipsisWidth, float &truncatedWidth, bool& foundBox) override final;
H A DRootInlineBox.h107 virtual float placeEllipsisBox(bool ltr, float blockLeftEdge, float blockRightEdge, float ellipsisWidth, float &truncatedWidth, bool& foundBox) override final;
H A DRootInlineBox.cpp150 bool foundBox = false; local
152 float position = placeEllipsisBox(ltr, blockLeftEdge, blockRightEdge, ellipsisWidth, truncatedWidth, foundBox);
157 float RootInlineBox::placeEllipsisBox(bool ltr, float blockLeftEdge, float blockRightEdge, float ellipsisWidth, float &truncatedWidth, bool& foundBox) argument
159 float result = InlineFlowBox::placeEllipsisBox(ltr, blockLeftEdge, blockRightEdge, ellipsisWidth, truncatedWidth, foundBox);
H A DInlineTextBox.cpp320 float InlineTextBox::placeEllipsisBox(bool flowIsLTR, float visibleLeftEdge, float visibleRightEdge, float ellipsisWidth, float &truncatedWidth, bool& foundBox) argument
322 if (foundBox) {
338 foundBox = true;
345 foundBox = true;
H A DInlineFlowBox.cpp1455 float InlineFlowBox::placeEllipsisBox(bool ltr, float blockLeftEdge, float blockRightEdge, float ellipsisWidth, float &truncatedWidth, bool& foundBox) argument
1458 // We iterate over all children, the foundBox variable tells us when we've found the
1464 // NOTE: these will cross after foundBox = true.
1469 int currResult = box->placeEllipsisBox(ltr, visibleLeftEdge, visibleRightEdge, ellipsisWidth, truncatedWidth, foundBox);

Completed in 130 milliseconds