Home | History | Annotate | Download | only in html

Lines Matching defs:renderView

32 #include "core/rendering/RenderView.h"
145 RenderView* renderView = document()->renderView();
150 path.moveTo(FloatPoint(minimumValueForLength(m_coords[0], width, renderView), minimumValueForLength(m_coords[1], height, renderView)));
152 path.addLineTo(FloatPoint(minimumValueForLength(m_coords[i * 2], width, renderView), minimumValueForLength(m_coords[i * 2 + 1], height, renderView)));
159 int r = min(minimumValueForLength(radius, width, renderView), minimumValueForLength(radius, height, renderView));
160 path.addEllipse(FloatRect(minimumValueForLength(m_coords[0], width, renderView) - r, minimumValueForLength(m_coords[1], height, renderView) - r, 2 * r, 2 * r));
165 int x0 = minimumValueForLength(m_coords[0], width, renderView);
166 int y0 = minimumValueForLength(m_coords[1], height, renderView);
167 int x1 = minimumValueForLength(m_coords[2], width, renderView);
168 int y1 = minimumValueForLength(m_coords[3], height, renderView);