/frameworks/native/opengl/tests/gl_jni/jni/ |
D | gl_code.cpp | 25 float centerX, float centerY, float centerZ, float upX, float upY, in gluLookAt() argument 42 float rlup = 1.0f / sqrtf(upX*upX + upY*upY + upZ*upZ); in gluLookAt() 43 upX *= rlup; in gluLookAt() 50 float sy = fz * upX - fx * upZ; in gluLookAt() 51 float sz = fx * upY - fy * upX; in gluLookAt()
|
/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/ |
D | UiScrollable.java | 426 int upX = 0; in scrollForward() local 436 upX = rect.centerX(); in scrollForward() 444 upX = rect.left + swipeAreaAdjust; in scrollForward() 447 return getInteractionController().scrollSwipe(downX, downY, upX, upY, steps); in scrollForward() 505 int upX = 0; in scrollBackward() local 516 upX = rect.centerX(); in scrollBackward() 525 upX = rect.right - swipeAreaAdjust; in scrollBackward() 528 return getInteractionController().scrollSwipe(downX, downY, upX, upY, steps); in scrollBackward()
|
D | InteractionController.java | 346 public boolean scrollSwipe(final int downX, final int downY, final int upX, final int upY, 348 Log.d(LOG_TAG, "scrollSwipe (" + downX + ", " + downY + ", " + upX + ", " 354 swipe(downX, downY, upX, upY, steps); 382 if (downX == upX) { 422 public boolean swipe(int downX, int downY, int upX, int upY, int steps) { 423 return swipe(downX, downY, upX, upY, steps, false /*drag*/); 436 public boolean swipe(int downX, int downY, int upX, int upY, int steps, boolean drag) { 446 xStep = ((double)(upX - downX)) / swipeSteps; 465 ret &= touchUp(upX, upY);
|
/frameworks/native/opengl/tests/tritex/ |
D | tritex.cpp | 36 float centerX, float centerY, float centerZ, float upX, float upY, in gluLookAt() argument 53 float rlup = 1.0f / sqrtf(upX*upX + upY*upY + upZ*upZ); in gluLookAt() 54 upX *= rlup; in gluLookAt() 61 float sy = fz * upX - fx * upZ; in gluLookAt() 62 float sz = fx * upY - fy * upX; in gluLookAt()
|
/frameworks/native/opengl/tests/gl_basic/ |
D | gl_basic.cpp | 39 float centerX, float centerY, float centerZ, float upX, float upY, in gluLookAt() argument 56 float rlup = 1.0f / sqrtf(upX*upX + upY*upY + upZ*upZ); in gluLookAt() 57 upX *= rlup; in gluLookAt() 64 float sy = fz * upX - fx * upZ; in gluLookAt() 65 float sz = fx * upY - fy * upX; in gluLookAt()
|
/frameworks/base/opengl/java/android/opengl/ |
D | GLU.java | 72 float centerX, float centerY, float centerZ, float upX, float upY, in gluLookAt() argument 78 upX, upY, upZ); in gluLookAt()
|
D | Matrix.java | 699 float centerX, float centerY, float centerZ, float upX, float upY, in setLookAtM() argument 717 float sy = fz * upX - fx * upZ; in setLookAtM() 718 float sz = fx * upY - fy * upX; in setLookAtM()
|