Searched defs:vt (Results 1 - 3 of 3) sorted by relevance
/frameworks/base/core/tests/coretests/src/android/view/ |
H A D | VelocityTest.java | 39 VelocityTracker vt = VelocityTracker.obtain(); 40 assertNotNull(vt); 41 vt.recycle(); 51 VelocityTracker vt = VelocityTracker.obtain(); 52 drag(vt, 100, 200, 100, 200, 10, t, 300); 53 vt.computeCurrentVelocity(1); 54 assertFalse("Velocity should not be null", vt.getXVelocity() == 0.0f); 55 assertFalse("Velocity should not be null", vt.getYVelocity() == 0.0f); 56 vt.clear(); 57 vt 234 drag(VelocityTracker vt, int startX, int endX, int startY, int endY, int steps, long startime, int duration) argument 243 drag(VelocityTracker vt, int startX, int endX, int startY, int endY, int steps, long startime, int duration, Interpolator interpolator) argument 259 addMotionEvent(VelocityTracker vt, int x, int y, long time, int action) argument [all...] |
/frameworks/rs/ |
H A D | rsg_generator.c | 24 void printVarType(FILE *f, const VarType *vt) { argument 26 if (vt->isConst) { 30 switch (vt->type) { 35 fprintf(f, "int%i_t", vt->bits); 38 fprintf(f, "uint%i_t", vt->bits); 41 if (vt->bits == 32) 47 fprintf(f, "%s", vt->typeName); 51 if (vt->ptrLevel) { 53 for (ct=0; ct < vt->ptrLevel; ct++) { 59 void printVarTypeAndName(FILE *f, const VarType *vt) { argument 168 const VarType *vt = &api->params[ct]; local 222 const VarType *vt = &api->params[ct2]; local 236 const VarType *vt = &api->params[ct2]; local 256 const VarType *vt = &api->params[ct2]; local 273 const VarType *vt = &api->params[ct2]; local 294 const VarType *vt = &api->params[ct2]; local 347 const VarType *vt = &api->params[ct2]; local 355 const VarType *vt = &api->params[ct2]; local 363 const VarType *vt = &api->params[ct2]; local 373 const VarType *vt = &api->params[ct2]; local 381 const VarType *vt = &api->params[ct2]; local 436 const VarType *vt = &api->params[ct2]; local 488 const VarType *vt = &api->params[ct2]; local 527 const VarType *vt = &api->params[ct2]; local 535 const VarType *vt = &api->params[ct2]; local 549 const VarType *vt = &api->params[ct2]; local 572 const VarType *vt = &api->params[ct2]; local 581 const VarType *vt = &api->params[ct2]; local 588 const VarType *vt = &api->params[ct2]; local 604 const VarType *vt = &api->params[ct2]; local 610 const VarType *vt = &api->params[ct2]; local [all...] |
/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
H A D | SwipeHelper.java | 110 private float getVelocity(VelocityTracker vt) { argument 111 return mSwipeDirection == X ? vt.getXVelocity() : 112 vt.getYVelocity(); 121 private float getPerpendicularVelocity(VelocityTracker vt) { argument 122 return mSwipeDirection == X ? vt.getYVelocity() : 123 vt.getXVelocity();
|
Completed in 988 milliseconds