Home
last modified time | relevance | path

Searched refs:ry (Results 1 – 25 of 26) sorted by relevance

12

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/
H A DUdfpsView.kt141 val ry = (sensorRect.bottom - sensorRect.top) / 2.0f regex
145 y > cy - ry * sensorTouchAreaCoefficient &&
146 y < cy + ry * sensorTouchAreaCoefficient &&
/aosp14/frameworks/base/graphics/java/android/graphics/
H A DPath.java623 public void addRoundRect(@NonNull RectF rect, float rx, float ry, @NonNull Direction dir) { in addRoundRect() argument
624 addRoundRect(rect.left, rect.top, rect.right, rect.bottom, rx, ry, dir); in addRoundRect()
634 public void addRoundRect(float left, float top, float right, float bottom, float rx, float ry, in addRoundRect() argument
636 nAddRoundRect(mNativePath, left, top, right, bottom, rx, ry, dir.nativeInt); in addRoundRect()
865 float right, float bottom, float rx, float ry, int dir); in nAddRoundRect() argument
H A DRecordingCanvas.java253 CanvasProperty<Float> ry, CanvasProperty<Paint> paint) { in drawRoundRect() argument
256 rx.getNativeContainer(), ry.getNativeContainer(), in drawRoundRect()
H A DBaseCanvas.java392 public void drawRoundRect(float left, float top, float right, float bottom, float rx, float ry, in drawRoundRect() argument
395 nDrawRoundRect(mNativeCanvasWrapper, left, top, right, bottom, rx, ry, in drawRoundRect()
399 public void drawRoundRect(@NonNull RectF rect, float rx, float ry, @NonNull Paint paint) { in drawRoundRect() argument
401 drawRoundRect(rect.left, rect.top, rect.right, rect.bottom, rx, ry, paint); in drawRoundRect()
696 public void punchHole(float left, float top, float right, float bottom, float rx, float ry, in punchHole() argument
698 nPunchHole(mNativeCanvasWrapper, left, top, right, bottom, rx, ry, alpha); in punchHole()
796 float bottom, float rx, float ry, long nativePaint); in nDrawRoundRect() argument
853 float bottom, float rx, float ry, float alpha); in nPunchHole() argument
H A DBaseRecordingCanvas.java385 float rx, float ry, @NonNull Paint paint) { in drawRoundRect() argument
386 nDrawRoundRect(mNativeCanvasWrapper, left, top, right, bottom, rx, ry, in drawRoundRect()
391 public final void drawRoundRect(@NonNull RectF rect, float rx, float ry, @NonNull Paint paint) { in drawRoundRect() argument
392 drawRoundRect(rect.left, rect.top, rect.right, rect.bottom, rx, ry, paint); in drawRoundRect()
622 public void punchHole(float left, float top, float right, float bottom, float rx, float ry, in punchHole() argument
624 nPunchHole(mNativeCanvasWrapper, left, top, right, bottom, rx, ry, alpha); in punchHole()
685 float bottom, float rx, float ry, long nativePaint); in nDrawRoundRect() argument
759 float bottom, float rx, float ry, float alpha); in nPunchHole() argument
H A DCanvas.java1998 public void drawRoundRect(@NonNull RectF rect, float rx, float ry, @NonNull Paint paint) {
1999 super.drawRoundRect(rect, rx, ry, paint);
2010 public void drawRoundRect(float left, float top, float right, float bottom, float rx, float ry,
2012 super.drawRoundRect(left, top, right, bottom, rx, ry, paint);
/aosp14/frameworks/base/libs/hwui/canvas/
H A DCanvasOps.h131 sp<uirenderer::CanvasPropertyPrimitive> ry;
136 canvas->drawRoundRect(rect, rx->value, ry->value, paint->value);
224 SkScalar ry;
227 canvas->drawRoundRect(rect, rx, ry, paint);
/aosp14/frameworks/base/core/java/android/inputmethodservice/navigationbar/
H A DKeyButtonRipple.java139 final float ry = horizontal ? cy : radius; in drawSoftware() local
143 canvas.drawRoundRect(cx - rx, cy - ry, cx + rx, cy + ry, corner, corner, p); in drawSoftware()
147 float r = Math.min(rx, ry); in drawSoftware()
/aosp14/frameworks/base/packages/SystemUI/shared/src/com/android/systemui/navigationbar/buttons/
H A DKeyButtonRipple.java141 final float ry = horizontal ? cy : radius; in drawSoftware() local
145 canvas.drawRoundRect(cx - rx, cy - ry, cx + rx, cy + ry, corner, corner, p); in drawSoftware()
149 float r = Math.min(rx, ry); in drawSoftware()
/aosp14/frameworks/base/libs/hwui/pipeline/skia/
H A DAnimatedDrawables.h38 uirenderer::CanvasPropertyPrimitive* ry, uirenderer::CanvasPropertyPaint* p) in AnimatedRoundRect() argument
39 : mLeft(left), mTop(top), mRight(right), mBottom(bottom), mRx(rx), mRy(ry), mPaint(p) {} in AnimatedRoundRect()
H A DSkiaRecordingCanvas.cpp114 uirenderer::CanvasPropertyPrimitive* ry, in drawRoundRect() argument
117 drawDrawable(mDisplayList->allocateDrawable<AnimatedRoundRect>(left, top, right, bottom, rx, ry, in drawRoundRect()
H A DSkiaRecordingCanvas.h73 uirenderer::CanvasPropertyPrimitive* ry,
/aosp14/frameworks/base/libs/hwui/hwui/
H A DCanvas.h141 uirenderer::CanvasPropertyPrimitive* ry,
219 virtual void drawRoundRect(float left, float top, float right, float bottom, float rx, float ry,
/aosp14/frameworks/base/libs/hwui/
H A DSkiaCanvas.h119 virtual void drawRoundRect(float left, float top, float right, float bottom, float rx, float ry,
154 uirenderer::CanvasPropertyPrimitive* ry,
H A DSkiaCanvas.cpp529 void SkiaCanvas::drawRoundRect(float left, float top, float right, float bottom, float rx, float ry, in drawRoundRect() argument
533 applyLooper(&paint, [&](const SkPaint& p) { mCanvas->drawRoundRect(rect, rx, ry, p); }); in drawRoundRect()
849 uirenderer::CanvasPropertyPrimitive* ry, in drawRoundRect() argument
852 new uirenderer::skiapipeline::AnimatedRoundRect(left, top, right, bottom, rx, ry, in drawRoundRect()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
H A DNotificationSwipeHelper.java507 final int ry = (int) ev.getRawY(); in isTouchInView() local
513 boolean ret = rect.contains(rx, ry); in isTouchInView()
/aosp14/frameworks/base/libs/hwui/jni/
H A Dandroid_graphics_Canvas.cpp363 jfloat right, jfloat bottom, jfloat rx, jfloat ry, jlong paintHandle) { in drawRoundRect() argument
365 get_canvas(canvasHandle)->drawRoundRect(left, top, right, bottom, rx, ry, *paint); in drawRoundRect()
724 jfloat bottom, jfloat rx, jfloat ry, jfloat alpha) { in punchHole() argument
726 canvas->punchHole(SkRRect::MakeRectXY(SkRect::MakeLTRB(left, top, right, bottom), rx, ry), in punchHole()
H A DPath.cpp172 jfloat right, jfloat bottom, jfloat rx, jfloat ry, jint dirHandle) { in addRoundRectXY() argument
176 obj->addRoundRect(rect, rx, ry, dir); in addRoundRectXY()
H A Dandroid_graphics_RenderNode.cpp281 …ean android_view_RenderNode_setRotationY(CRITICAL_JNI_PARAMS_COMMA jlong renderNodePtr, float ry) { in android_view_RenderNode_setRotationY() argument
282 return SET_AND_DIRTY(setRotationY, ry, RenderNode::ROTATION_Y); in android_view_RenderNode_setRotationY()
/aosp14/frameworks/base/libs/hwui/tests/unit/
H A DCanvasOpTests.cpp286 .ry = 10 in TEST()
420 .ry = radiusY, in TEST()
/aosp14/frameworks/base/core/res/geoid_height_map_assets/
H A Dtile-7.textpb2 …\251\203T\212\325 l\323\301\036\224\271\244\246\265FMD\316\005U\232\345\020ry\254\253\275P 85\207s…
3 …373\322q|\377r\24166t\2734}w\321{\025\330\213\331\017\000\273\220b\tmv\337*ry\" \000 \225\331\"\02…
H A Dtile-1.textpb2 …-D\346\240f\346\232Z\232^\215\364n\253\020\277\025+\310\000\257\035\311\240ry\240\364\240\032Zx\25…
H A Dtile-3.textpb2 …1\205<p:\327\212I\310\252\023\326d\375Mg\314*\243/5,0\026n\225~;r;U\270\255ry\025\243\005\272\"\34…
/aosp14/frameworks/base/services/tests/mockingservicestests/res/raw/
H A Dbackup_telephony_no_password30 ٻ���+]�ۋ_��qm�r��������OvJF8\���L|�+��|�n����i=�s����"ry����}�`
/aosp14/frameworks/base/tools/aapt2/integration-tests/CommandTests/
H A Dandroid-33.jarAndroidManifest.xml META-INF/ META-INF/MANIFEST.MF NOTICES/ NOTICES/libcore ...

12