Searched refs:cx (Results 1 - 25 of 37) sorted by relevance

12

/frameworks/base/graphics/java/android/graphics/
H A DSweepGradient.java40 * @param cx The x-coordinate of the center
51 public SweepGradient(float cx, float cy, argument
61 mCx = cx;
65 init(nativeCreate1(cx, cy, colors, positions));
71 * @param cx The x-coordinate of the center
76 public SweepGradient(float cx, float cy, int color0, int color1) { argument
78 mCx = cx;
82 init(nativeCreate2(cx, cy, color0, color1));
/frameworks/support/core-ui/java/android/support/v4/widget/
H A DSwipeProgressBar.java141 final int cx = width / 2;
171 mClipRect.set(cx - clearRadius, 0, cx + clearRadius, height);
203 drawCircle(canvas, cx, cy, mColor1, pct);
207 drawCircle(canvas, cx, cy, mColor2, pct);
211 drawCircle(canvas, cx, cy, mColor3, pct);
215 drawCircle(canvas, cx, cy, mColor4, pct);
219 drawCircle(canvas, cx, cy, mColor1, pct);
229 drawTrigger(canvas, cx, cy);
237 drawTrigger(canvas, cx, c
243 drawTrigger(Canvas canvas, int cx, int cy) argument
257 drawCircle(Canvas canvas, float cx, float cy, int color, float pct) argument
[all...]
/frameworks/base/core/java/android/gesture/
H A DOrientedBoundingBox.java36 OrientedBoundingBox(float angle, float cx, float cy, float w, float h) { argument
40 centerX = cx;
/frameworks/rs/cpu_ref/
H A DrsCpuIntrinsicYuvToRGB.cpp159 int cx = (x1 >> 1) * cstep; local
160 *out = rsYuvToRGBA_uchar4(Y[x1], u[cx], v[cx]);
193 int cx = (x1 >> 1) * cstep; local
194 *out = rsYuvToRGBA_uchar4(Y[x1], u[cx], v[cx]);
197 *out = rsYuvToRGBA_uchar4(Y[x1], u[cx], v[cx]);
/frameworks/rs/java/tests/HealingBrush/src/rs/example/android/com/healingbrush/
H A Dfind_region.rs46 int2 fit_pos = gfindMin(fit, cx, cy, cwidth, cheight);
100 static int2 gfindMin(rs_allocation fit, int cx, int cy, int cwidth, int cheight) {
105 int reg_minx = cx;
132 void findMin(rs_allocation fit, rs_allocation fit_max,int cx, int cy, int cwidth, int cheight) {
133 int2 fit_pos = gfindMin(fit, cx, cy, cwidth, cheight);
/frameworks/base/libs/hwui/utils/
H A DVectorDrawableUtils.cpp103 * @param cx The x coordinate center of the ellipse
114 double cx,
142 double e2x = cx + (a * cosTheta * cosEta2) - (b * sinTheta * sinEta2);
215 double cx; local
218 cx = xm - sdy;
221 cx = xm + sdy;
225 double eta0 = atan2((y0p - cy), (x0p - cx));
227 double eta1 = atan2((y1p - cy), (x1p - cx));
238 cx *= a;
240 double tcx = cx;
113 arcToBezier(SkPath* p, double cx, double cy, double a, double b, double e1x, double e1y, double theta, double start, double sweep) argument
[all...]
/frameworks/support/graphics/drawable/static/src/android/support/graphics/drawable/
H A DPathParser.java637 double cx;
640 cx = xm - sdy;
643 cx = xm + sdy;
647 double eta0 = Math.atan2((y0p - cy), (x0p - cx));
649 double eta1 = Math.atan2((y1p - cy), (x1p - cx));
660 cx *= a;
662 double tcx = cx;
663 cx = cx * cosTheta - cy * sinTheta;
666 arcToBezier(p, cx, c
683 arcToBezier(Path p, double cx, double cy, double a, double b, double e1x, double e1y, double theta, double start, double sweep) argument
[all...]
/frameworks/av/media/libstagefright/codecs/avc/enc/src/
H A Davcenc_int.h58 #define MV_COST(f,s,cx,cy,px,py) (WEIGHTED_COST(f,mvbits[((cx)<<(s))-px]+mvbits[((cy)<<(s))-py]))
59 #define MV_COST_S(f,cx,cy,px,py) (WEIGHTED_COST(f,mvbits[cx-px]+mvbits[cy-py]))
/frameworks/base/libs/hwui/
H A DPathTessellator.h129 float cx, float cy,
H A DSpotShadow.h49 static bool ccw(float ax, float ay, float bx, float by, float cx, float cy);
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DSweepGradient_Delegate.java70 * @param cx The x-coordinate of the center
81 private SweepGradient_Delegate(float cx, float cy, argument
84 mJavaPaint = new SweepGradientPaint(cx, cy, mColors, mPositions);
92 public SweepGradientPaint(float cx, float cy, int[] colors, argument
95 mCx = cx;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DKeyButtonRipple.java92 final float cx = w * .5f;
94 final float rx = horizontal ? radius : cx;
96 final float corner = horizontal ? cy : cx;
98 canvas.drawRoundRect(cx - rx, cy - ry,
99 cx + rx, cy + ry,
H A DRemoteInputView.java431 public void setRevealParameters(int cx, int cy, int r) { argument
432 mRevealCx = cx;
/frameworks/base/packages/WallpaperCropper/src/com/android/photos/views/
H A DTiledImageView.java259 int cx = width / 2;
265 cx += (mTempRectF.left / scale) - xoffset;
267 cx -= (mTempRectF.left / scale) - xoffset;
275 mRenderer.centerX = swap ? cy : cx;
276 mRenderer.centerY = swap ? cx : cy;
/frameworks/base/tools/layoutlib/bridge/src/android/util/
H A DPathParser_Delegate.java736 double cx;
739 cx = xm - sdy;
742 cx = xm + sdy;
746 double eta0 = Math.atan2((y0p - cy), (x0p - cx));
748 + (x0p - cx) + ") = " + Math.toDegrees(eta0));
750 double eta1 = Math.atan2((y1p - cy), (x1p - cx));
752 + (x1p - cx) + ") = " + Math.toDegrees(eta1));
762 cx *= a;
764 double tcx = cx;
765 cx
792 arcToBezier(@onNull Path_Delegate p, double cx, double cy, double a, double b, double e1x, double e1y, double theta, double start, double sweep) argument
[all...]
/frameworks/base/core/java/android/view/
H A DDisplayListCanvas.java234 public void drawCircle(CanvasProperty<Float> cx, CanvasProperty<Float> cy, argument
236 nDrawCircle(mNativeCanvasWrapper, cx.getNativeContainer(), cy.getNativeContainer(),
/frameworks/base/services/core/java/com/android/server/wm/
H A DCircularDisplayMask.java128 // the circle with center (cx, cy) and radius 'radius'
129 static private double calcPixelShading(double cx, double cy, double px, argument
132 px -= cx;
244 double cx = (maskWidth - 1.0) / 2.0;
251 double shading = calcPixelShading(cx, cy, px, py, radius);
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DQSTileBaseView.java86 final int cx = width / 2;
89 mRipple.setHotspotBounds(cx - rad, cy - rad, cx + rad, cy + rad);
/frameworks/native/opengl/libs/ETC1/
H A Detc1.cpp544 for (etc1_uint32 cx = 0; cx < xEnd; cx++) {
597 for (etc1_uint32 cx = 0; cx < xEnd; cx++) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/misc/
H A DUtilities.java163 float cx = r.centerX();
165 r.offset(-cx, -cy);
170 r.offset(cx, cy);
/frameworks/base/opengl/java/android/opengl/
H A DMatrix.java651 float cx = (float) Math.cos(x);
657 float cxsy = cx * sy;
665 rm[rmOffset + 4] = cxsy * cz + cx * sz;
666 rm[rmOffset + 5] = -cxsy * sz + cx * cz;
672 rm[rmOffset + 10] = cx * cy;
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DDessertCaseView.java532 final int cx = (int) (left + w * 0.5f);
534 mView.layout(cx - w2, cy - h2, cx + w2, cy + h2);
/frameworks/rs/java/tests/VrDemo/src/com/example/android/rs/vr/engine/
H A DViewMatrix.java351 double cx = mScreenDim[0] / 2.;
354 double dx = (cx - x) / ballRadius;
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/graphics/
H A DNopCanvas.java174 public void drawCircle(float cx, float cy, float radius, Paint paint) { argument
/frameworks/base/graphics/java/android/graphics/drawable/
H A DNinePatchDrawable.java243 final float cx = (bounds.left + bounds.right) / 2.0f;
245 canvas.scale(-1.0f, 1.0f, cx, cy);

Completed in 820 milliseconds

12