Home
last modified time | relevance | path

Searched refs:cx (Results 1 – 25 of 29) sorted by relevance

12

/frameworks/support/v4/java/android/support/v4/widget/
DSwipeProgressBar.java140 final int cx = width / 2; in draw() local
170 mClipRect.set(cx - clearRadius, 0, cx + clearRadius, height); in draw()
202 drawCircle(canvas, cx, cy, mColor1, pct); in draw()
206 drawCircle(canvas, cx, cy, mColor2, pct); in draw()
210 drawCircle(canvas, cx, cy, mColor3, pct); in draw()
214 drawCircle(canvas, cx, cy, mColor4, pct); in draw()
218 drawCircle(canvas, cx, cy, mColor1, pct); in draw()
228 drawTrigger(canvas, cx, cy); in draw()
236 drawTrigger(canvas, cx, cy); in draw()
242 private void drawTrigger(Canvas canvas, int cx, int cy) { in drawTrigger() argument
[all …]
/frameworks/base/graphics/java/android/graphics/
DSweepGradient.java51 public SweepGradient(float cx, float cy, in SweepGradient() argument
61 mCx = cx; in SweepGradient()
65 init(nativeCreate1(cx, cy, colors, positions)); in SweepGradient()
76 public SweepGradient(float cx, float cy, int color0, int color1) { in SweepGradient() argument
78 mCx = cx; in SweepGradient()
82 init(nativeCreate2(cx, cy, color0, color1)); in SweepGradient()
DCanvas.java1123 public void drawCircle(float cx, float cy, float radius, @NonNull Paint paint) { in drawCircle() argument
1124 native_drawCircle(mNativeCanvasWrapper, cx, cy, radius, paint.mNativePaint); in drawCircle()
1977 private static native void native_drawCircle(long nativeCanvas, float cx, in native_drawCircle() argument
/frameworks/rs/cpu_ref/
DrsCpuIntrinsicYuvToRGB.cpp159 int cx = (x1 >> 1) * cstep; in kernel() local
160 *out = rsYuvToRGBA_uchar4(Y[x1], u[cx], v[cx]); in kernel()
193 int cx = (x1 >> 1) * cstep; in kernel() local
194 *out = rsYuvToRGBA_uchar4(Y[x1], u[cx], v[cx]); in kernel()
197 *out = rsYuvToRGBA_uchar4(Y[x1], u[cx], v[cx]); in kernel()
/frameworks/base/core/java/android/util/
DPathParser.java550 double cx; in drawArc() local
553 cx = xm - sdy; in drawArc()
556 cx = xm + sdy; in drawArc()
560 double eta0 = Math.atan2((y0p - cy), (x0p - cx)); in drawArc()
562 double eta1 = Math.atan2((y1p - cy), (x1p - cx)); in drawArc()
573 cx *= a; in drawArc()
575 double tcx = cx; in drawArc()
576 cx = cx * cosTheta - cy * sinTheta; in drawArc()
579 arcToBezier(p, cx, cy, a, b, x0, y0, thetaD, eta0, sweep); in drawArc()
597 double cx, in arcToBezier() argument
[all …]
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
DSweepGradient_Delegate.java81 private SweepGradient_Delegate(float cx, float cy, in SweepGradient_Delegate() argument
84 mJavaPaint = new SweepGradientPaint(cx, cy, mColors, mPositions); in SweepGradient_Delegate()
92 public SweepGradientPaint(float cx, float cy, int[] colors, in SweepGradientPaint() argument
95 mCx = cx; in SweepGradientPaint()
DCanvas_Delegate.java624 float cx, float cy, float radius, long paint) { in native_drawCircle() argument
626 cx - radius, cy - radius, cx + radius, cy + radius, in native_drawCircle()
/frameworks/av/media/libstagefright/codecs/avc/enc/src/
Davcenc_int.h58 #define MV_COST(f,s,cx,cy,px,py) (WEIGHTED_COST(f,mvbits[((cx)<<(s))-px]+mvbits[((cy)<<(s))-py… argument
59 #define MV_COST_S(f,cx,cy,px,py) (WEIGHTED_COST(f,mvbits[cx-px]+mvbits[cy-py])) argument
/frameworks/base/core/java/android/gesture/
DOrientedBoundingBox.java36 OrientedBoundingBox(float angle, float cx, float cy, float w, float h) { in OrientedBoundingBox() argument
40 centerX = cx; in OrientedBoundingBox()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DKeyButtonRipple.java93 final float cx = w * .5f; in drawSoftware() local
95 final float rx = horizontal ? radius : cx; in drawSoftware()
97 final float corner = horizontal ? cy : cx; in drawSoftware()
99 canvas.drawRoundRect(cx - rx, cy - ry, in drawSoftware()
100 cx + rx, cy + ry, in drawSoftware()
/frameworks/base/packages/WallpaperCropper/src/com/android/photos/views/
DTiledImageView.java259 int cx = width / 2; in positionFromMatrix() local
265 cx += (mTempRectF.left / scale) - xoffset; in positionFromMatrix()
267 cx -= (mTempRectF.left / scale) - xoffset; in positionFromMatrix()
275 mRenderer.centerX = swap ? cy : cx; in positionFromMatrix()
276 mRenderer.centerY = swap ? cx : cy; in positionFromMatrix()
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/misc/
DUtilities.java63 int cx = r.centerX(); in scaleRectAboutCenter() local
65 r.offset(-cx, -cy); in scaleRectAboutCenter()
70 r.offset(cx, cy); in scaleRectAboutCenter()
/frameworks/native/opengl/libs/ETC1/
Detc1.cpp544 for (etc1_uint32 cx = 0; cx < xEnd; cx++) { in etc1_encode_image() local
597 for (etc1_uint32 cx = 0; cx < xEnd; cx++) { in etc1_decode_image() local
/frameworks/base/libs/hwui/
DPathTessellator.h106 float cx, float cy,
DSpotShadow.h84 static bool ccw(double ax, double ay, double bx, double by, double cx, double cy);
DPathTessellator.cpp1022 float cx, float cy, in recursiveQuadraticBezierVertices() argument
1027 float d = (cx - bx) * dy - (cy - by) * dx; in recursiveQuadraticBezierVertices()
1035 float acx = (ax + cx) * 0.5f; in recursiveQuadraticBezierVertices()
1036 float bcx = (bx + cx) * 0.5f; in recursiveQuadraticBezierVertices()
/frameworks/base/core/java/android/view/
DHardwareCanvas.java113 public abstract void drawCircle(CanvasProperty<Float> cx, CanvasProperty<Float> cy, in drawCircle() argument
DGLES20Canvas.java710 public void drawCircle(float cx, float cy, float radius, Paint paint) { in drawCircle() argument
711 nDrawCircle(mRenderer, cx, cy, radius, paint.mNativePaint); in drawCircle()
714 private static native void nDrawCircle(long renderer, float cx, float cy, in nDrawCircle() argument
718 public void drawCircle(CanvasProperty<Float> cx, CanvasProperty<Float> cy, in drawCircle() argument
720 nDrawCircle(mRenderer, cx.getNativeContainer(), cy.getNativeContainer(), in drawCircle()
/frameworks/base/opengl/java/android/opengl/
DMatrix.java651 float cx = (float) Math.cos(x); in setRotateEulerM() local
657 float cxsy = cx * sy; in setRotateEulerM()
665 rm[rmOffset + 4] = cxsy * cz + cx * sz; in setRotateEulerM()
666 rm[rmOffset + 5] = -cxsy * sz + cx * cz; in setRotateEulerM()
672 rm[rmOffset + 10] = cx * cy; in setRotateEulerM()
/frameworks/base/core/java/com/android/internal/widget/multiwaveview/
DPointCloud.java218 final float cx = mDrawable.getIntrinsicWidth() * 0.5f; in draw() local
222 canvas.translate(px - cx, py - cy); in draw()
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
DQSTileView.java275 final int cx = width / 2; in updateRippleSize() local
278 mRipple.setHotspotBounds(cx - rad, cy - rad, cx + rad, cy + rad); in updateRippleSize()
/frameworks/base/packages/SystemUI/src/com/android/systemui/
DDessertCaseView.java525 final int cx = (int) (left + w * 0.5f);
527 mView.layout(cx - w2, cy - h2, cx + w2, cy + h2);
/frameworks/base/packages/SystemUI/src/com/android/systemui/egg/
DLLand.java658 c.drawCircle(p.cx, p.cy, p.r, pt);
822 int cx, cy, r;
843 if (Math.hypot(x-cx, y-cy) <= r) return true;
855 cx = (hitRect.left + hitRect.right)/2;
/frameworks/base/docs/html/training/material/
Danimations.jd83 int cx = (myView.getLeft() + myView.getRight()) / 2;
92 ViewAnimationUtils.createCircularReveal(myView, cx, cy, 0, finalRadius);
103 int cx = (myView.getLeft() + myView.getRight()) / 2;
111 ViewAnimationUtils.createCircularReveal(myView, cx, cy, initialRadius, 0);
/frameworks/base/core/jni/
Dandroid_graphics_Canvas.cpp254 static void drawCircle(JNIEnv* env, jobject, jlong canvasHandle, jfloat cx, jfloat cy, in drawCircle() argument
257 get_canvas(canvasHandle)->drawCircle(cx, cy, radius, *paint); in drawCircle()

12