Searched refs:cy (Results 1 - 25 of 124) 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.cpp17 SVG_ATTRIBUTE(cy),
26 SkScalar cx, cy, r; local
28 SkParse::FindScalar(f_cy.c_str(), &cy);
32 top = cy - r;
34 bottom = cy + r;
H A DSkSVGEllipse.cpp17 SVG_ATTRIBUTE(cy),
27 SkScalar cx, cy, rx, ry; local
29 SkParse::FindScalar(f_cy.c_str(), &cy);
34 top = cy - ry;
36 bottom = cy + ry;
H A DSkSVGRadialGradient.cpp15 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.cpp32 void SkRectShape::setCircle(SkScalar cx, SkScalar cy, SkScalar radius) { argument
33 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.h31 int cy = clip.fTop; local
41 const uint8_t* bits = srcMask.getAddr1(cx, cy);
42 SK_BLITBWMASK_DEVTYPE* device = bitmap.SK_BLITBWMASK_GETADDR(cx, cy);
/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.h112 static SkShader* CreateSweep(SkScalar cx, SkScalar cy,
/external/webkit/Source/WebCore/platform/brew/
H A DScreenBrew.cpp58 info.height = bitmapInfo.cy;
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
H A DUVProjectionGenerator.java120 float cx = bt.getCenter().x, cy = bt.getCenter().y;
126 v.set(positions.get(i)-cx, positions.get(i + 1)-cy, 0);
147 float ySideFactor = Math.signum(triangle.get1().y-cy)+
148 Math.signum(triangle.get2().y-cy)+
149 Math.signum(triangle.get3().y-cy);
179 float cx = bs.getCenter().x, cy = bs.getCenter().y, cz = bs.getCenter().z;
185 v.set(positions.get(i)-cx, positions.get(i + 1)-cy, 0);
194 v.set(positions.get(i)-cx, positions.get(i + 1)-cy, positions.get(i + 2)-cz);
208 float ySideFactor = Math.signum(triangle.get1().y-cy)+
209 Math.signum(triangle.get2().y-cy)
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/os2fslib/
H A DSDL_os2fslib.c124 LONG cx, LONG cy,
140 if (y+cy>swpDesktop.cy)
141 y = swpDesktop.cy - cy;
142 return WinSetWindowPos(hwnd, hwndInsertBehind, x, y, cx, cy, fl);
154 if (y+swp.cy>swpDesktop.cy)
155 y = swpDesktop.cy - swp.cy;
122 SetAccessableWindowPos(HWND hwnd, HWND hwndInsertBehind, LONG x, LONG y, LONG cx, LONG cy, ULONG fl) argument
1057 int cx, cy, ncx, ncy; local
[all...]

Completed in 375 milliseconds

12345