HomeSort by relevance Sort by last modified time
    Searched refs:cy (Results 1 - 25 of 121) sorted by null

1 2 3 4 5

  /frameworks/base/graphics/java/android/graphics/
SweepGradient.java 25 * @param cy The y-coordinate of the center
35 public SweepGradient(float cx, float cy,
44 native_instance = nativeCreate1(cx, cy, colors, positions);
51 * @param cy The y-coordinate of the center
55 public SweepGradient(float cx, float cy, int color0, int color1) {
56 native_instance = nativeCreate2(cx, cy, color0, color1);
  /external/webkit/WebCore/platform/graphics/brew/
IntSizeBrew.cpp 35 , m_height(size.cy)
43 size.cy = height();
  /external/webkit/WebCore/platform/graphics/win/
IntSizeWin.cpp 35 , m_height(s.cy)
  /bootable/bootloader/legacy/arch_msm7k/
mddi_console.c 77 static int cx, cy, cmaxx, cmaxy; variable
84 cy = 0;
114 drawglyph(pixels + cy * 12 * fb_width + cx * 6, FGCOLOR,
121 cy++;
123 if(cy >= cmaxy) {
124 cy = cmaxy - 1;
148 cy = 0;
  /development/samples/GlobalTime/src/com/android/globaltime/
Clock.java 59 * radius r0 to radius r1 about the center point (cx, cy),
66 * @param cy the Y coordinate of the clock center
71 float radius, float pos, float cx, float cy, float r0, float r1) {
76 float p0y = cy + dy * r0;
78 float p1y = cy + dy * r1;
100 float cx, float cy, float width, float height) {
101 path.moveTo(cx - width / 2.0f, cy);
102 path.lineTo(cx, cy + height);
103 path.lineTo(cx + width / 2.0f, cy);
113 float cx, float cy, float width, float height)
    [all...]
  /external/skia/src/svg/
SkSVGCircle.cpp 25 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;
SkSVGEllipse.cpp 25 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;
  /external/webkit/WebCore/platform/graphics/
UnitBezier.h 41 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/webkit/WebCore/svg/
SVGCircleElement.idl 36 readonly attribute SVGAnimatedLength cy;
SVGEllipseElement.idl 35 readonly attribute SVGAnimatedLength cy;
SVGRadialGradientElement.idl 30 readonly attribute SVGAnimatedLength cy;
SVGTransform.cpp 121 void SVGTransform::setRotate(float angle, float cx, float cy)
125 m_center = FloatPoint(cx, cy);
127 // TODO: toString() implementation, which can show cx, cy (need to be stored?)
129 m_matrix.translate(cx, cy);
131 m_matrix.translate(-cx, -cy);
SVGCircleElement.h 53 DECLARE_ANIMATED_PROPERTY(SVGCircleElement, SVGNames::cyAttr, SVGLength, Cy, cy)
SVGTransformDistance.h 47 SVGTransformDistance(SVGTransform::SVGTransformType, float angle, float cx, float cy, const AffineTransform&);
SVGTransform.idl 41 void setRotate(in float angle, in float cx, in float cy);
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
SweepGradient.java 27 * @param cy The y-coordinate of the center
37 public SweepGradient(float cx, float cy,
41 mPaint = new SweepGradientPaint(cx, cy, mColors, mPositions);
48 * @param cy The y-coordinate of the center
52 public SweepGradient(float cx, float cy, int color0, int color1) {
53 this(cx, cy, new int[] { color0, color1}, null /*positions*/);
66 public SweepGradientPaint(float cx, float cy, int[] colors, float[] positions) {
69 mCy = cy;
  /external/quake/quake/src/WinQuake/
conproc.cpp 41 BOOL SetConsoleCXCY(HANDLE hStdout, int cx, int cy);
290 BOOL SetConsoleCXCY(HANDLE hStdout, int cx, int cy)
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/skia/src/core/
SkPath.cpp 510 SkScalar cy = oval.centerY(); local
518 this->moveTo(cx + rx, cy);
520 this->cubicTo(cx + rx, cy - sy, cx + sx, cy - ry, cx, cy - ry);
521 this->cubicTo(cx - sx, cy - ry, cx - rx, cy - sy, cx - rx, cy);
522 this->cubicTo(cx - rx, cy + sy, cx - sx, cy + ry, cx, cy + ry)
    [all...]
SkBlitBWMaskTemplate.h 39 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);
  /packages/apps/Gallery/src/com/android/camera/
ImageViewTouchBase.java 342 float cy = getHeight() / 2F; local
344 zoomTo(scale, cx, cy);
349 float cy = getHeight() / 2F; local
351 panBy(cx - pointX, cy - pointY);
352 zoomTo(scale, cx, cy);
372 float cy = getHeight() / 2F; local
374 mSuppMatrix.postScale(rate, rate, cx, cy);
384 float cy = getHeight() / 2F; local
388 tmp.postScale(1F / rate, 1F / rate, cx, cy);
391 mSuppMatrix.setScale(1F, 1F, cx, cy);
    [all...]
RotateBitmap.java 61 int cy = mBitmap.getHeight() / 2; local
62 matrix.preTranslate(-cx, -cy);
  /frameworks/base/core/java/android/gesture/
OrientedBoundingBox.java 36 OrientedBoundingBox(float angle, float cx, float cy, float w, float h) {
41 centerY = cy;
  /packages/apps/Gallery3D/src/com/cooliris/media/
RotateBitmap.java 61 int cy = mBitmap.getHeight() / 2; local
62 matrix.preTranslate(-cx, -cy);
  /external/quake/quake/src/QW/client/
menu.c 117 void M_Print (int cx, int cy, char *str)
121 M_DrawCharacter (cx, cy, (*str)+128);
127 void M_PrintWhite (int cx, int cy, char *str)
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+8, p)
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
BitmapMesh.java 85 private void warp(float cx, float cy) {
93 float dy = cy - y;
103 dst[i+1] = cy;

Completed in 234 milliseconds

1 2 3 4 5