Searched refs:dy1 (Results 1 - 7 of 7) sorted by relevance

/frameworks/layoutlib/bridge/src/android/graphics/
H A DPath_Delegate.java275 /*package*/ static void nRQuadTo(long nPath, float dx1, float dy1, float dx2, float dy2) { argument
281 pathDelegate.rQuadTo(dx1, dy1, dx2, dy2);
726 * @param dy1 The amount to add to the y-coordinate of the last point on
733 public void rQuadTo(float dx1, float dy1, float dx2, float dy2) { argument
738 dy1 += mLastY;
741 mPath.quadTo(dx1, dy1, mLastX = dx2, mLastY = dy2);
769 public void rCubicTo(float dx1, float dy1, float dx2, float dy2, argument
775 dy1 += mLastY;
780 mPath.curveTo(dx1, dy1, dx2, dy2, mLastX = dx3, mLastY = dy3);
/frameworks/base/graphics/java/android/graphics/
H A DPath.java410 * @param dy1 The amount to add to the y-coordinate of the last point on
417 public void rQuadTo(float dx1, float dy1, float dx2, float dy2) { argument
419 nRQuadTo(mNativePath, dx1, dy1, dx2, dy2);
831 private static native void nRQuadTo(long nPath, float dx1, float dy1, float dx2, float dy2); argument
/frameworks/base/packages/EasterEgg/src/com/android/egg/octo/
H A DOctopusDrawable.java348 public Arm(float x, float y, float dx1, float dy1, float dx2, float dy2, float dx3, float dy3, argument
350 link1 = new Link(0, x, y, dx1, dy1);
351 link2 = new Link(1, x+dx1, y+dy1, dx2, dy2);
352 link3 = new Link(2, x+dx1+dx2, y+dy1+dy2, dx3, dy3);
/frameworks/base/media/java/android/media/
H A DThumbnailUtils.java439 int dy1 = Math.max(0, b1.getHeight() - targetHeight);
444 dy1 / 2,
/frameworks/base/core/jni/android/graphics/
H A DPath.cpp106 static void rQuadTo(JNIEnv* env, jclass clazz, jlong objHandle, jfloat dx1, jfloat dy1, argument
109 obj->rQuadTo(dx1, dy1, dx2, dy2);
/frameworks/base/core/java/android/view/
H A DViewGroup.java3965 int dx1, int dy1, int dx2, int dy2, Paint paint) {
3967 int y1 = y2 - dy1;
3963 fillDifference(Canvas canvas, int x2, int y2, int x3, int y3, int dx1, int dy1, int dx2, int dy2, Paint paint) argument
/frameworks/native/services/inputflinger/
H A DInputReader.cpp5990 float dy1 = delta1.dy * mPointerYZoomScale; local
5993 float dot = dx1 * dx2 + dy1 * dy2;

Completed in 246 milliseconds