HomeSort by relevance Sort by last modified time
    Searched defs:estimator (Results 1 - 2 of 2) sorted by null

  /frameworks/base/core/jni/
android_view_VelocityTracker.cpp 53 bool getEstimator(int32_t id, VelocityTracker::Estimator* outEstimator);
134 bool VelocityTrackerState::getEstimator(int32_t id, VelocityTracker::Estimator* outEstimator) {
197 VelocityTracker::Estimator estimator; local
198 bool result = state->getEstimator(id, &estimator);
205 env->SetFloatArrayRegion(xCoeffObj, 0, VelocityTracker::Estimator::MAX_DEGREE + 1,
206 estimator.xCoeff);
207 env->SetFloatArrayRegion(yCoeffObj, 0, VelocityTracker::Estimator::MAX_DEGREE + 1,
208 estimator.yCoeff);
209 env->SetIntField(outEstimatorObj, gEstimatorClassInfo.degree, estimator.degree)
    [all...]
  /frameworks/base/libs/androidfw/
VelocityTracker.cpp 252 Estimator estimator; local
253 getEstimator(id, &estimator);
255 "estimator (degree=%d, xCoeff=%s, yCoeff=%s, confidence=%f)",
257 int(estimator.degree),
258 vectorToString(estimator.xCoeff, estimator.degree + 1).string(),
259 vectorToString(estimator.yCoeff, estimator.degree + 1).string(),
260 estimator.confidence)
337 Estimator estimator; local
    [all...]

Completed in 862 milliseconds