OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:distY
(Results
1 - 6
of
6
) sorted by null
/packages/apps/Gallery/src/com/android/camera/
HighlightView.java
186
float
distY
= y - r.centerY();
188
(int) Math.sqrt(distX * distX +
distY
*
distY
);
192
if (Math.abs(
distY
) > Math.abs(distX)) {
193
if (
distY
< 0) {
/external/droiddriver/samples/testapp/src/com/google/android/apps/common/testing/ui/testapp/
GestureActivity.java
157
public boolean onScroll(MotionEvent e1, MotionEvent e2, float distX, float
distY
) {
160
Log.v(TAG, "Scroll: e1: " + e1 + " e2: " + e2 + " distX: " + distX + "
distY
: " +
distY
);
/frameworks/base/core/java/com/android/internal/widget/
WaveView.java
202
double
distY
= mouseY - mLockCenterY;
203
int dragDistance = (int) Math.ceil(Math.hypot(distX,
distY
));
204
double touchA = Math.atan2(distX,
distY
);
434
double
distY
= mMouseY - mLockCenterY;
435
int dragDistance = (int) Math.ceil(Math.hypot(distX,
distY
));
/external/chromium_org/third_party/skia/src/gpu/
GrTextStrike.cpp
350
short*
distY
= (short*) distYStorage.get();
358
EDTAA::edtaa3(dfPtr, gx, gy, dfWidth, dfHeight, distX,
distY
, outerDist);
368
EDTAA::edtaa3(dfPtr, gx, gy, dfWidth, dfHeight, distX,
distY
, innerDist);
/external/skia/src/gpu/
GrTextStrike.cpp
350
short*
distY
= (short*) distYStorage.get();
358
EDTAA::edtaa3(dfPtr, gx, gy, dfWidth, dfHeight, distX,
distY
, outerDist);
368
EDTAA::edtaa3(dfPtr, gx, gy, dfWidth, dfHeight, distX,
distY
, innerDist);
/frameworks/base/core/tests/coretests/src/android/view/
VelocityTest.java
248
int
distY
= endY - startY;
252
int y = (int) (startY +
distY
* ii);
Completed in 3852 milliseconds