/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/ |
H A D | UdfpsView.kt | 141 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 D | Path.java | 623 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 D | RecordingCanvas.java | 253 CanvasProperty<Float> ry, CanvasProperty<Paint> paint) { in drawRoundRect() argument 256 rx.getNativeContainer(), ry.getNativeContainer(), in drawRoundRect()
|
H A D | BaseCanvas.java | 392 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 D | BaseRecordingCanvas.java | 385 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 D | Canvas.java | 1998 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 D | CanvasOps.h | 131 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 D | KeyButtonRipple.java | 139 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 D | KeyButtonRipple.java | 141 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 D | AnimatedDrawables.h | 38 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 D | SkiaRecordingCanvas.cpp | 114 uirenderer::CanvasPropertyPrimitive* ry, in drawRoundRect() argument 117 drawDrawable(mDisplayList->allocateDrawable<AnimatedRoundRect>(left, top, right, bottom, rx, ry, in drawRoundRect()
|
H A D | SkiaRecordingCanvas.h | 73 uirenderer::CanvasPropertyPrimitive* ry,
|
/aosp14/frameworks/base/libs/hwui/hwui/ |
H A D | Canvas.h | 141 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 D | SkiaCanvas.h | 119 virtual void drawRoundRect(float left, float top, float right, float bottom, float rx, float ry, 154 uirenderer::CanvasPropertyPrimitive* ry,
|
H A D | SkiaCanvas.cpp | 529 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 D | NotificationSwipeHelper.java | 507 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 D | android_graphics_Canvas.cpp | 363 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 D | Path.cpp | 172 jfloat right, jfloat bottom, jfloat rx, jfloat ry, jint dirHandle) { in addRoundRectXY() argument 176 obj->addRoundRect(rect, rx, ry, dir); in addRoundRectXY()
|
H A D | android_graphics_RenderNode.cpp | 281 …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 D | CanvasOpTests.cpp | 286 .ry = 10 in TEST() 420 .ry = radiusY, in TEST()
|
/aosp14/frameworks/base/core/res/geoid_height_map_assets/ |
H A D | tile-7.textpb | 2 …\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 D | tile-1.textpb | 2 …-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 D | tile-3.textpb | 2 …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 D | backup_telephony_no_password | 30 ٻ���+]�ۋ_��qm�r��������OvJF8\���L|�+��|�n��i=�s����"ry����}�`
|
/aosp14/frameworks/base/tools/aapt2/integration-tests/CommandTests/ |
H A D | android-33.jar | AndroidManifest.xml
META-INF/
META-INF/MANIFEST.MF
NOTICES/
NOTICES/libcore ... |