Home
last modified time | relevance | path

Searched refs:endY (Results 1 – 8 of 8) sorted by relevance

/external/webkit/WebCore/platform/graphics/skia/
DImageBufferSkia.cpp154 int endY = rect.y() + rect.height(); in getImageData() local
155 if (endY > size.height()) in getImageData()
156 endY = size.height(); in getImageData()
157 int numRows = endY - originY; in getImageData()
227 int endY = destPoint.y() + sourceRect.bottom(); in putImageData() local
228 ASSERT(endY <= size.height()); in putImageData()
229 int numRows = endY - destY; in putImageData()
/external/webkit/WebCore/svg/graphics/filters/
DSVGFEMorphology.cpp113 int endY = min(effectDrawingRect.height() - 1, y + radiusY); in apply() local
119 for (int i = startY; i <= endY; ++i) { in apply()
132 for (int i = startY; i <= endY; ++i) { in apply()
/external/webkit/WebCore/platform/image-decoders/
DImageDecoder.h94 void copyRowNTimes(int startX, int endX, int startY, int endY) in copyRowNTimes() argument
99 ASSERT(endY <= height()); in copyRowNTimes()
102 for (int destY = startY + 1; destY < endY; ++destY) in copyRowNTimes()
/external/webkit/WebCore/platform/graphics/wince/
DPlatformPathWince.cpp720 float startX, startY, endX, endY; in addEllipse() local
726 getEllipsePointByAngle(ear, a, b, endX, endY); in addEllipse()
729 transformArcPoint(endX, endY, p); in addEllipse()
734 … PlatformPathElement::ArcTo data = { { endX, endY }, { p.x(), p.y() }, { a, b }, !anticlockwise }; in addEllipse()
DGraphicsContextWince.cpp825 int startX, startY, endX, endY; in strokeArc() local
831 endY = stableRound(fendY); in strokeArc()
836 endY = centerY - endY; in strokeArc()
845 if (startY < endY) { in strokeArc()
847 clipRect.bottom = endY; in strokeArc()
849 clipRect.top = endY; in strokeArc()
/external/quake/quake/src/QW/scitech/include/
Dmgraph.h685 m_int endX,endY; /* Ending point on arc */ member
/external/quake/quake/src/WinQuake/scitech/INCLUDE/
DMGRAPH.H685 m_int endX,endY; /* Ending point on arc */ member
/external/webkit/WebCore/
DChangeLog-2008-08-1040039 startY -> m_top, endY -> m_bottom, left -> m_left, width -> m_width,