OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:yVel
(Results
1 - 3
of
3
) sorted by null
/frameworks/base/packages/SystemUI/src/com/android/systemui/
UniverseBackground.java
418
float
yVel
= mVelocityTracker.getYVelocity();
419
boolean negative =
yVel
< 0;
429
float vel = (float)Math.hypot(
yVel
, xVel);
438
xVel,
yVel
,
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
PanelView.java
424
float vel = 0,
yVel
= 0, xVel = 0;
431
yVel
= mVelocityTracker.getYVelocity();
432
negative =
yVel
< 0;
442
vel = (float)Math.hypot(
yVel
, xVel);
466
xVel,
yVel
,
/frameworks/base/core/java/com/android/internal/widget/
PointerLocationView.java
321
float
yVel
= ps.mYVelocity * (1000 / 60);
322
canvas.drawLine(lastX, lastY, lastX + xVel, lastY +
yVel
, mPaint);
339
yVel
= ps.mAltYVelocity * (1000 / 60);
340
canvas.drawLine(lastX, lastY, lastX + xVel, lastY +
yVel
, mPaint);
[
all
...]
Completed in 1434 milliseconds