/frameworks/native/opengl/libagl/ |
D | matrix.cpp | 716 const GLfixed ry = rhs->y; in point2__generic() local 717 lhs->x = mla2a(rx, m[ 0], ry, m[ 4], m[12]); in point2__generic() 718 lhs->y = mla2a(rx, m[ 1], ry, m[ 5], m[13]); in point2__generic() 719 lhs->z = mla2a(rx, m[ 2], ry, m[ 6], m[14]); in point2__generic() 720 lhs->w = mla2a(rx, m[ 3], ry, m[ 7], m[15]); in point2__generic() 726 const GLfixed ry = rhs->y; in point3__generic() local 728 lhs->x = mla3a(rx, m[ 0], ry, m[ 4], rz, m[ 8], m[12]); in point3__generic() 729 lhs->y = mla3a(rx, m[ 1], ry, m[ 5], rz, m[ 9], m[13]); in point3__generic() 730 lhs->z = mla3a(rx, m[ 2], ry, m[ 6], rz, m[10], m[14]); in point3__generic() 731 lhs->w = mla3a(rx, m[ 3], ry, m[ 7], rz, m[11], m[15]); in point3__generic() [all …]
|
/frameworks/base/libs/hwui/pipeline/skia/ |
D | AnimatedDrawables.h | 35 uirenderer::CanvasPropertyPrimitive* ry, uirenderer::CanvasPropertyPaint* p) in AnimatedRoundRect() argument 36 : mLeft(left), mTop(top), mRight(right), mBottom(bottom), mRx(rx), mRy(ry), mPaint(p) {} in AnimatedRoundRect()
|
D | SkiaRecordingCanvas.cpp | 70 uirenderer::CanvasPropertyPrimitive* ry, in drawRoundRect() argument 73 drawDrawable(mDisplayList->allocateDrawable<AnimatedRoundRect>(left, top, right, bottom, rx, ry, in drawRoundRect()
|
D | SkiaRecordingCanvas.h | 63 uirenderer::CanvasPropertyPrimitive* ry,
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
D | KeyButtonRipple.java | 122 final float ry = horizontal ? cy : radius; in drawSoftware() local 126 canvas.drawRoundRect(cx - rx, cy - ry, cx + rx, cy + ry, corner, corner, p); in drawSoftware() 130 float r = Math.min(rx, ry); in drawSoftware()
|
/frameworks/compile/slang/tests/F_mix_vector/ |
D | mix_vector.rscript | 7 (void)f4.ry;
|
/frameworks/base/graphics/java/android/graphics/ |
D | Path.java | 632 public void addRoundRect(@NonNull RectF rect, float rx, float ry, @NonNull Direction dir) { in addRoundRect() argument 633 addRoundRect(rect.left, rect.top, rect.right, rect.bottom, rx, ry, dir); in addRoundRect() 643 public void addRoundRect(float left, float top, float right, float bottom, float rx, float ry, in addRoundRect() argument 646 nAddRoundRect(mNativePath, left, top, right, bottom, rx, ry, dir.nativeInt); in addRoundRect() 852 float right, float bottom, float rx, float ry, int dir); in nAddRoundRect() argument
|
D | RecordingCanvas.java | 267 CanvasProperty<Float> ry, CanvasProperty<Paint> paint) { in drawRoundRect() argument 270 rx.getNativeContainer(), ry.getNativeContainer(), in drawRoundRect()
|
D | BaseCanvas.java | 387 public void drawRoundRect(float left, float top, float right, float bottom, float rx, float ry, in drawRoundRect() argument 390 nDrawRoundRect(mNativeCanvasWrapper, left, top, right, bottom, rx, ry, in drawRoundRect() 394 public void drawRoundRect(@NonNull RectF rect, float rx, float ry, @NonNull Paint paint) { in drawRoundRect() argument 396 drawRoundRect(rect.left, rect.top, rect.right, rect.bottom, rx, ry, paint); in drawRoundRect() 706 float bottom, float rx, float ry, long nativePaint); in nDrawRoundRect() argument
|
D | BaseRecordingCanvas.java | 383 float rx, float ry, @NonNull Paint paint) { in drawRoundRect() argument 384 nDrawRoundRect(mNativeCanvasWrapper, left, top, right, bottom, rx, ry, in drawRoundRect() 389 public final void drawRoundRect(@NonNull RectF rect, float rx, float ry, @NonNull Paint paint) { in drawRoundRect() argument 390 drawRoundRect(rect.left, rect.top, rect.right, rect.bottom, rx, ry, paint); in drawRoundRect() 637 float bottom, float rx, float ry, long nativePaint); in nDrawRoundRect() argument
|
D | Canvas.java | 1975 public void drawRoundRect(@NonNull RectF rect, float rx, float ry, @NonNull Paint paint) { in drawRoundRect() argument 1976 super.drawRoundRect(rect, rx, ry, paint); in drawRoundRect() 1987 public void drawRoundRect(float left, float top, float right, float bottom, float rx, float ry, in drawRoundRect() argument 1989 super.drawRoundRect(left, top, right, bottom, rx, ry, paint); in drawRoundRect()
|
/frameworks/base/core/java/android/view/ |
D | DisplayListCanvas.java | 45 CanvasProperty<Float> ry, CanvasProperty<Paint> paint); in drawRoundRect() argument
|
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/android/graphics/ |
D | NopCanvas.java | 192 public void drawRoundRect(RectF rect, float rx, float ry, Paint paint) { in drawRoundRect() argument 196 public void drawRoundRect(float left, float top, float right, float bottom, float rx, float ry, in drawRoundRect() argument
|
/frameworks/base/libs/hwui/hwui/ |
D | Canvas.h | 170 uirenderer::CanvasPropertyPrimitive* ry, 242 virtual void drawRoundRect(float left, float top, float right, float bottom, float rx, float ry,
|
/frameworks/base/libs/hwui/ |
D | SkiaCanvas.h | 110 virtual void drawRoundRect(float left, float top, float right, float bottom, float rx, float ry, 145 uirenderer::CanvasPropertyPrimitive* ry,
|
D | SkiaCanvas.cpp | 498 void SkiaCanvas::drawRoundRect(float left, float top, float right, float bottom, float rx, float ry, in drawRoundRect() argument 502 mCanvas->drawRoundRect(rect, rx, ry, *filterPaint(paint)); in drawRoundRect() 765 uirenderer::CanvasPropertyPrimitive* ry, in drawRoundRect() argument 768 new uirenderer::skiapipeline::AnimatedRoundRect(left, top, right, bottom, rx, ry, in drawRoundRect()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ |
D | NotificationSwipeHelper.java | 430 final int ry = (int) ev.getRawY(); in isTouchInView() local 436 boolean ret = rect.contains(rx, ry); in isTouchInView()
|
/frameworks/layoutlib/bridge/src/android/graphics/ |
D | BaseCanvas_Delegate.java | 303 final float rx, final float ry, long paint) { in nDrawRoundRect() argument 314 2 * (int)rx, 2 * (int)ry); in nDrawRoundRect() 322 2 * (int)rx, 2 * (int)ry); in nDrawRoundRect()
|
D | Path_Delegate.java | 383 float bottom, float rx, float ry, int dir) { in nAddRoundRect() argument 391 left, top, right - left, bottom - top, rx * 2, ry * 2), false); in nAddRoundRect()
|
/frameworks/base/core/jni/ |
D | android_view_RenderNode.cpp | 255 static jboolean android_view_RenderNode_setRotationY(jlong renderNodePtr, float ry) { in android_view_RenderNode_setRotationY() argument 256 return SET_AND_DIRTY(setRotationY, ry, RenderNode::ROTATION_Y); in android_view_RenderNode_setRotationY()
|
D | android_graphics_Canvas.cpp | 331 jfloat right, jfloat bottom, jfloat rx, jfloat ry, jlong paintHandle) { in drawRoundRect() argument 333 get_canvas(canvasHandle)->drawRoundRect(left, top, right, bottom, rx, ry, *paint); in drawRoundRect()
|
/frameworks/base/core/jni/android/graphics/ |
D | Path.cpp | 162 jfloat right, jfloat bottom, jfloat rx, jfloat ry, jint dirHandle) { in addRoundRectXY() argument 166 obj->addRoundRect(rect, rx, ry, dir); in addRoundRectXY()
|
/frameworks/base/services/tests/servicestests/res/raw/ |
D | backup_telephony_no_password | 30 ٻ���+]�ۋ_��qm�r��������OvJF8\���L|�+��|�n��i=�s����"ry����}�`
|