Searched defs:vt (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/tests/coretests/src/android/view/
H A DVelocityTest.java39 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 Drsg_generator.c24 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
165 const VarType *vt = &api->params[ct]; local
219 const VarType *vt = &api->params[ct2]; local
238 const VarType *vt = &api->params[ct2]; local
255 const VarType *vt = &api->params[ct2]; local
276 const VarType *vt = &api->params[ct2]; local
329 const VarType *vt = &api->params[ct2]; local
337 const VarType *vt = &api->params[ct2]; local
345 const VarType *vt = &api->params[ct2]; local
355 const VarType *vt = &api->params[ct2]; local
363 const VarType *vt = &api->params[ct2]; local
416 const VarType *vt = &api->params[ct2]; local
468 const VarType *vt = &api->params[ct2]; local
507 const VarType *vt = &api->params[ct2]; local
515 const VarType *vt = &api->params[ct2]; local
529 const VarType *vt = &api->params[ct2]; local
552 const VarType *vt = &api->params[ct2]; local
561 const VarType *vt = &api->params[ct2]; local
568 const VarType *vt = &api->params[ct2]; local
584 const VarType *vt = &api->params[ct2]; local
590 const VarType *vt = &api->params[ct2]; local
[all...]
/frameworks/rs/cpu_ref/
H A DrsCpuIntrinsicYuvToRGB.cpp203 uchar vt = v[x1]; local
204 *out = rsYuvToRGBA_uchar4(Y[x1], ut, vt);
207 *out = rsYuvToRGBA_uchar4(Y[x1], ut, vt);
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DSwipeHelper.java111 private float getVelocity(VelocityTracker vt) { argument
112 return mSwipeDirection == X ? vt.getXVelocity() :
113 vt.getYVelocity();
122 private float getPerpendicularVelocity(VelocityTracker vt) { argument
123 return mSwipeDirection == X ? vt.getYVelocity() :
124 vt.getXVelocity();

Completed in 473 milliseconds