Searched refs:cy (Results 1 - 25 of 116) sorted by relevance

12345

/external/webkit/Source/WebCore/platform/graphics/brew/
H A DIntSizeBrew.cpp35 , m_height(size.cy)
43 size.cy = height();
/external/webkit/Source/WebCore/platform/graphics/win/
H A DIntSizeWin.cpp35 , m_height(s.cy)
/external/skia/src/svg/
H A DSkSVGCircle.cpp25 SVG_ATTRIBUTE(cy),
34 SkScalar cx, cy, r; local
36 SkParse::FindScalar(f_cy.c_str(), &cy);
40 top = cy - r;
42 bottom = cy + r;
H A DSkSVGEllipse.cpp25 SVG_ATTRIBUTE(cy),
35 SkScalar cx, cy, rx, ry; local
37 SkParse::FindScalar(f_cy.c_str(), &cy);
42 top = cy - ry;
44 bottom = cy + ry;
H A DSkSVGRadialGradient.cpp23 SVG_ATTRIBUTE(cy),
/external/webkit/Source/WebCore/svg/
H A DSVGCircleElement.idl36 readonly attribute SVGAnimatedLength cy;
H A DSVGEllipseElement.idl35 readonly attribute SVGAnimatedLength cy;
H A DSVGRadialGradientElement.idl30 readonly attribute SVGAnimatedLength cy;
H A DSVGTransform.cpp101 void SVGTransform::setRotate(float angle, float cx, float cy) argument
105 m_center = FloatPoint(cx, cy);
107 // TODO: toString() implementation, which can show cx, cy (need to be stored?)
109 m_matrix.translate(cx, cy);
111 m_matrix.translate(-cx, -cy);
152 float cy = narrowPrecisionToFloat(cosAngle != 1 ? (m_matrix.e() * sinAngle / (1 - cosAngle) + m_matrix.f()) / 2 : 0); local
153 if (cx || cy)
154 return makeString("rotate(", String::number(m_angle), ' ', String::number(cx), ' ', String::number(cy), ')');
H A DSVGTransformDistance.h45 SVGTransformDistance(SVGTransform::SVGTransformType, float angle, float cx, float cy, const AffineTransform&);
H A DSVGRadialGradientElement.cpp44 DEFINE_ANIMATED_LENGTH(SVGRadialGradientElement, SVGNames::cyAttr, Cy, cy)
57 // Spec: If the cx/cy/r attribute is not specified, the effect is as if a value of "50%" were specified.
183 attributes.setCy(radial->cy());
218 attributes.setFy(attributes.cy());
226 centerPoint = FloatPoint(attributes.cx().valueAsPercentage(), attributes.cy().valueAsPercentage());
230 centerPoint = FloatPoint(attributes.cx().value(this), attributes.cy().value(this));
239 // Spec: If (fx, fy) lies outside the circle defined by (cx, cy) and r, set
253 return cy().isRelative()
254 || cy().isRelative()
H A DSVGCircleElement.h59 DECLARE_ANIMATED_LENGTH(Cy, cy)
H A DSVGEllipseElement.h58 DECLARE_ANIMATED_LENGTH(Cy, cy)
H A DSVGRadialGradientElement.h54 DECLARE_ANIMATED_LENGTH(Cy, cy)
H A DSVGTransform.idl41 [StrictTypeChecking, RequiresAllArguments=Raise] void setRotate(in float angle, in float cx, in float cy);
/external/webkit/Source/WebCore/platform/graphics/
H A DUnitBezier.h41 cy = 3.0 * p1y;
42 by = 3.0 * (p2y - p1y) - cy;
43 ay = 1.0 - cy - by;
54 return ((ay * t + by) * t + cy) * t;
120 double cy; member in struct:WebCore::UnitBezier
/external/skia/src/effects/
H A DSkRectShape.cpp39 void SkRectShape::setCircle(SkScalar cx, SkScalar cy, SkScalar radius) { argument
40 fBounds.set(cx - radius, cy - radius, cx + radius, cy + radius);
/external/quake/quake/src/WinQuake/
H A Dconproc.cpp41 BOOL SetConsoleCXCY(HANDLE hStdout, int cx, int cy);
290 BOOL SetConsoleCXCY(HANDLE hStdout, int cx, int cy) argument
297 if (cy > coordMax.Y)
298 cy = coordMax.Y;
310 info.srWindow.Bottom = cy - 1;
312 if (cy < info.dwSize.Y)
317 info.dwSize.Y = cy;
322 else if (cy > info.dwSize.Y)
324 info.dwSize.Y = cy;
/external/quake/quake/src/QW/client/
H A Dmenu.c117 void M_Print (int cx, int cy, char *str) argument
121 M_DrawCharacter (cx, cy, (*str)+128);
127 void M_PrintWhite (int cx, int cy, char *str) argument
131 M_DrawCharacter (cx, cy, *str);
184 int cx, cy; local
189 cy = y;
191 M_DrawTransPic (cx, cy, p);
195 cy += 8;
196 M_DrawTransPic (cx, cy, p);
199 M_DrawTransPic (cx, cy
[all...]
/external/skia/src/core/
H A DSkBlitBWMaskTemplate.h39 int cy = clip.fTop; local
49 const uint8_t* bits = srcMask.getAddr1(cx, cy);
50 SK_BLITBWMASK_DEVTYPE* device = bitmap.SK_BLITBWMASK_GETADDR(cx, cy);
H A DSkPath.cpp555 SkScalar cy = oval.centerY(); local
563 this->moveTo(cx + rx, cy);
565 this->cubicTo(cx + rx, cy - sy, cx + sx, cy - ry, cx, cy - ry);
566 this->cubicTo(cx - sx, cy - ry, cx - rx, cy - sy, cx - rx, cy);
567 this->cubicTo(cx - rx, cy + sy, cx - sx, cy
[all...]
/external/chromium/third_party/libjingle/source/talk/base/
H A Dwin32window.h49 int x, int y, int cx, int cy);
/external/skia/include/effects/
H A DSkGradientShader.h119 static SkShader* CreateSweep(SkScalar cx, SkScalar cy,
/external/webkit/Source/WebCore/platform/brew/
H A DScreenBrew.cpp58 info.height = bitmapInfo.cy;
/external/skia/samplecode/
H A DSampleExtractAlpha.cpp23 const float cy = bm.height() * 0.5f; local
25 float dy = y - cy;

Completed in 2244 milliseconds

12345