/frameworks/av/services/camera/libcameraservice/device3/ |
D | RotateAndCropMapper.cpp | 242 float ry = 0; in updateCaptureResult() local 249 ry = cy; in updateCaptureResult() 258 ry = cy + (ch - rh) / 2; in updateCaptureResult() 264 yShift = ry - cy + ch; // top edge of rotated to bottom edge of cropped in updateCaptureResult() 285 transformPoints(entry.data.i32 + i, 2, transformMat, xShift, yShift, rx, ry); in updateCaptureResult() 292 transformPoints(entry.data.i32, entry.count / 2, transformMat, xShift, yShift, rx, ry); in updateCaptureResult()
|
/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.h | 63 uirenderer::CanvasPropertyPrimitive* ry,
|
D | SkiaRecordingCanvas.cpp | 74 uirenderer::CanvasPropertyPrimitive* ry, in drawRoundRect() argument 77 drawDrawable(mDisplayList->allocateDrawable<AnimatedRoundRect>(left, top, right, bottom, rx, ry, in drawRoundRect()
|
/frameworks/compile/slang/tests/F_mix_vector/ |
D | mix_vector.rscript | 7 (void)f4.ry;
|
/frameworks/base/graphics/java/android/graphics/ |
D | Path.java | 638 public void addRoundRect(@NonNull RectF rect, float rx, float ry, @NonNull Direction dir) { in addRoundRect() argument 639 addRoundRect(rect.left, rect.top, rect.right, rect.bottom, rx, ry, dir); in addRoundRect() 649 public void addRoundRect(float left, float top, float right, float bottom, float rx, float ry, in addRoundRect() argument 652 nAddRoundRect(mNativePath, left, top, right, bottom, rx, ry, dir.nativeInt); in addRoundRect() 858 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 | 2035 public void drawRoundRect(@NonNull RectF rect, float rx, float ry, @NonNull Paint paint) { in drawRoundRect() argument 2036 super.drawRoundRect(rect, rx, ry, paint); in drawRoundRect() 2047 public void drawRoundRect(float left, float top, float right, float bottom, float rx, float ry, in drawRoundRect() argument 2049 super.drawRoundRect(left, top, right, bottom, rx, ry, paint); in drawRoundRect()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
D | KeyButtonRipple.java | 128 final float ry = horizontal ? cy : radius; in drawSoftware() local 132 canvas.drawRoundRect(cx - rx, cy - ry, cx + rx, cy + ry, corner, corner, p); in drawSoftware() 136 float r = Math.min(rx, ry); in drawSoftware()
|
/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 | 156 uirenderer::CanvasPropertyPrimitive* ry, 228 virtual void drawRoundRect(float left, float top, float right, float bottom, float rx, float ry,
|
/frameworks/base/libs/hwui/ |
D | SkiaCanvas.h | 112 virtual void drawRoundRect(float left, float top, float right, float bottom, float rx, float ry, 146 uirenderer::CanvasPropertyPrimitive* ry,
|
D | SkiaCanvas.cpp | 512 void SkiaCanvas::drawRoundRect(float left, float top, float right, float bottom, float rx, float ry, in drawRoundRect() argument 517 mCanvas->drawRoundRect(rect, rx, ry, p); in drawRoundRect() 809 uirenderer::CanvasPropertyPrimitive* ry, in drawRoundRect() argument 812 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.getY(); 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/libs/hwui/jni/ |
D | Path.cpp | 160 jfloat right, jfloat bottom, jfloat rx, jfloat ry, jint dirHandle) { in addRoundRectXY() argument 164 obj->addRoundRect(rect, rx, ry, dir); in addRoundRectXY()
|
D | android_graphics_RenderNode.cpp | 253 …ean android_view_RenderNode_setRotationY(CRITICAL_JNI_PARAMS_COMMA jlong renderNodePtr, float ry) { in android_view_RenderNode_setRotationY() argument 254 return SET_AND_DIRTY(setRotationY, ry, RenderNode::ROTATION_Y); in android_view_RenderNode_setRotationY()
|
D | android_graphics_Canvas.cpp | 333 jfloat right, jfloat bottom, jfloat rx, jfloat ry, jlong paintHandle) { in drawRoundRect() argument 335 get_canvas(canvasHandle)->drawRoundRect(left, top, right, bottom, rx, ry, *paint); in drawRoundRect()
|
/frameworks/base/services/tests/servicestests/res/raw/ |
D | backup_telephony_no_password | 30 ٻ���+]�ۋ_��qm�r��������OvJF8\���L|�+��|�n��i=�s����"ry����}�`
|