Home | History | Annotate | Download | only in jni

Lines Matching refs:Estimator

53     bool getEstimator(int32_t id, VelocityTracker::Estimator* outEstimator);
134 bool VelocityTrackerState::getEstimator(int32_t id, VelocityTracker::Estimator* outEstimator) {
197 VelocityTracker::Estimator estimator;
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);
210 env->SetFloatField(outEstimatorObj, gEstimatorClassInfo.confidence, estimator.confidence);
241 "(IILandroid/view/VelocityTracker$Estimator;)Z",
259 FIND_CLASS(clazz, "android/view/VelocityTracker$Estimator");