HomeSort by relevance Sort by last modified time
    Searched refs:boxHeight (Results 1 - 5 of 5) sorted by null

  /external/webkit/WebCore/rendering/
InlineFlowBox.h 162 void setVerticalOverflowPositions(int topLayoutOverflow, int bottomLayoutOverflow, int topVisualOverflow, int bottomVisualOverflow, int boxHeight);
196 inline void InlineFlowBox::setVerticalOverflowPositions(int topLayoutOverflow, int bottomLayoutOverflow, int topVisualOverflow, int bottomVisualOverflow, int boxHeight)
199 if (topLayoutOverflow == m_y && bottomLayoutOverflow == m_y + boxHeight && topVisualOverflow == m_y && bottomVisualOverflow == m_y + boxHeight)
201 m_overflow.set(new RenderOverflow(IntRect(m_x, m_y, m_width, boxHeight)));
InlineFlowBox.cpp 511 int boxHeight = curr->height();
513 selectionBottom = max(selectionBottom, newY + boxHeight);
529 int boxHeight = height();
534 int bottomOverflow = min(y() + boxHeight, lineBottom);
549 bottomVisualOverflow = max(y() + boxHeight + boxShadowBottom, bottomVisualOverflow);
596 setVerticalOverflowPositions(topLayoutOverflow, bottomLayoutOverflow, topVisualOverflow, bottomVisualOverflow, boxHeight);
    [all...]
RenderLayerBacking.cpp 772 float boxHeight = borderBox.height();
776 origin.setY(style->perspectiveOriginY().calcFloatValue(boxHeight));
    [all...]
RenderLayer.cpp 618 const float boxHeight = borderBox.height();
621 float perspectiveOriginY = style->perspectiveOriginY().calcFloatValue(boxHeight);
626 perspectiveOriginY -= boxHeight / 2.0f;
    [all...]
  /external/webkit/WebCore/platform/graphics/win/
MediaPlayerPrivateQuickTimeWin.cpp 577 static const int boxHeight = 25;
580 drawRect.size.height = boxHeight;
599 CGContextShowTextAtPoint(cgContext, drawRect.origin.x + boxBorderWidth, drawRect.origin.y + boxHeight - boxBorderWidth, text, strlen(text));

Completed in 33 milliseconds