/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); 45 native_shader = nativePostCreate1(native_instance, cx, cy, colors, positions); 52 * @param cy The y-coordinate of the center 56 public SweepGradient(float cx, float cy, int color0, int color1) { 57 native_instance = nativeCreate2(cx, cy, color0, color1); 58 native_shader = nativePostCreate2(native_instance, cx, cy, color0, color1); 64 private static native int nativePostCreate1(int native_shader, float cx, float cy, 66 private static native int nativePostCreate2(int native_shader, float cx, float cy, [all...] |
/packages/apps/Camera/jni/feature_stab/db_vlvm/ |
db_utilities_geometry.h | 34 double cx,cy,m; local 36 cx=0;cy=0; 40 cy+= *X++; 46 c[1]=cy*m; 54 double cx,cy,m; local 57 cx=0;cy=0; 62 cy+=temp[1]; 68 c[1]=cy*m; 78 double cx,cy,cz,m; local 80 cx=0;cy=0;cz=0 100 double cx,cy,cz,m; local [all...] |
/external/webkit/Source/WebCore/platform/graphics/brew/ |
IntSizeBrew.cpp | 35 , m_height(size.cy) 43 size.cy = height();
|
/external/webkit/Source/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/Source/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/Source/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 | 101 void SVGTransform::setRotate(float angle, float cx, float cy) 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), ')');
|
SVGCircleElement.h | 59 DECLARE_ANIMATED_LENGTH(Cy, cy)
|
SVGEllipseElement.h | 58 DECLARE_ANIMATED_LENGTH(Cy, cy)
|
SVGRadialGradientElement.h | 54 DECLARE_ANIMATED_LENGTH(Cy, cy)
|
SVGTransformDistance.h | 45 SVGTransformDistance(SVGTransform::SVGTransformType, float angle, float cx, float cy, const AffineTransform&);
|
/external/skia/src/effects/ |
SkRectShape.cpp | 39 void SkRectShape::setCircle(SkScalar cx, SkScalar cy, SkScalar radius) { 40 fBounds.set(cx - radius, cy - radius, cx + radius, cy + radius);
|
/external/chromium/third_party/libjingle/source/talk/base/ |
win32window.h | 49 int x, int y, int cx, int 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;
|
/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);
|
/packages/apps/VideoEditor/src/com/android/videoeditor/widgets/ |
ImageViewTouchBase.java | 377 final float cy = getHeight() / 2F; local 379 zoomTo(scale, cx, cy); 391 final float cy = getHeight() / 2F; local 393 panBy(cx - pointX, cy - pointY); 394 zoomTo(scale, cx, cy); 432 float cy = getHeight() / 2F; local 434 mSuppMatrix.postScale(rate, rate, cx, cy); 454 float cy = getHeight() / 2F; local 458 tmp.postScale(1F / rate, 1F / rate, cx, cy); 461 mSuppMatrix.setScale(1F, 1F, cx, cy); [all...] |
/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/Launcher2/src/com/android/launcher2/ |
Cling.java | 183 int cy = -1; local 191 cy = pos[1]; 192 if (cx > -1 && cy > -1) { 193 c.drawCircle(cx, cy, mRevealRadius, mErasePaint); 194 mPunchThroughGraphic.setBounds(cx - dw/2, cy - dh/2, cx + dw/2, cy + dh/2); 205 mHandTouchGraphic.setBounds(cx + offset, cy + offset, 207 cy + mHandTouchGraphic.getIntrinsicHeight() + offset);
|