HomeSort by relevance Sort by last modified time
    Searched refs:MAX_DEGREE (Results 1 - 4 of 4) sorted by null

  /frameworks/base/core/java/android/view/
VelocityTracker.java 259 // Must match VelocityTracker::Estimator::MAX_DEGREE
260 private static final int MAX_DEGREE = 2;
265 public final float[] xCoeff = new float[MAX_DEGREE + 1];
270 public final float[] yCoeff = new float[MAX_DEGREE + 1];
  /frameworks/base/core/jni/
android_view_VelocityTracker.cpp 202 env->SetFloatArrayRegion(xCoeffObj, 0, VelocityTracker::Estimator::MAX_DEGREE + 1,
204 env->SetFloatArrayRegion(yCoeffObj, 0, VelocityTracker::Estimator::MAX_DEGREE + 1,
  /frameworks/base/include/ui/
Input.h 636 static const size_t MAX_DEGREE = 2;
639 float xCoeff[MAX_DEGREE + 1], yCoeff[MAX_DEGREE + 1];
651 for (size_t i = 0; i <= MAX_DEGREE; i++) {
  /frameworks/base/libs/ui/
Input.cpp     [all...]

Completed in 25 milliseconds