Searched defs:dy2 (Results 1 - 6 of 6) sorted by relevance

/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
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/core/jni/android/graphics/
H A DPath.cpp104 jfloat dx2, jfloat dy2) {
106 obj->rQuadTo(dx1, dy1, dx2, dy2);
103 rQuadTo(JNIEnv* env, jclass clazz, jlong objHandle, jfloat dx1, jfloat dy1, jfloat dx2, jfloat dy2) argument
/frameworks/base/graphics/java/android/graphics/
H A DPath.java406 * @param dy2 The amount to add to the y-coordinate of the last point on
409 public void rQuadTo(float dx1, float dy1, float dx2, float dy2) { argument
411 nRQuadTo(mNativePath, dx1, dy1, dx2, dy2);
832 private static native void nRQuadTo(long nPath, float dx1, float dy1, float dx2, float dy2); argument
/frameworks/base/tools/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);
727 * @param dy2 The amount to add to the y-coordinate of the last point on
730 public void rQuadTo(float dx1, float dy1, float dx2, float dy2) { argument
737 dy2 += mLastY;
738 mPath.quadTo(dx1, dy1, mLastX = dx2, mLastY = dy2);
766 public void rCubicTo(float dx1, float dy1, float dx2, float dy2, argument
774 dy2 += mLastY;
777 mPath.curveTo(dx1, dy1, dx2, dy2, mLastX = dx3, mLastY = dy3);
/frameworks/base/core/java/android/view/
H A DViewGroup.java3853 int dx1, int dy1, int dx2, int dy2, Paint paint) {
3858 int y4 = y3 + dy2;
3851 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.cpp5851 float dy2 = delta2.dy * mPointerYZoomScale; local
5852 float dot = dx1 * dx2 + dy1 * dy2;

Completed in 256 milliseconds