Searched refs:estimator (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/jni/
H A Dandroid_view_VelocityTracker.cpp197 VelocityTracker::Estimator estimator; local
198 bool result = state->getEstimator(id, &estimator);
206 estimator.xCoeff);
208 estimator.yCoeff);
209 env->SetIntField(outEstimatorObj, gEstimatorClassInfo.degree, estimator.degree);
210 env->SetFloatField(outEstimatorObj, gEstimatorClassInfo.confidence, estimator.confidence);
/frameworks/base/libs/androidfw/
H A DVelocityTracker.cpp252 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 35 milliseconds