Searched refs:outEstimator (Results 1 – 4 of 4) sorted by relevance
/frameworks/native/libs/input/ |
D | VelocityTracker.cpp | 357 bool VelocityTracker::getEstimator(uint32_t id, Estimator* outEstimator) const { in getEstimator() 358 return mStrategy->getEstimator(id, outEstimator); in getEstimator() 627 VelocityTracker::Estimator* outEstimator) const { in getEstimator() 628 outEstimator->clear(); in getEstimator() 672 outEstimator->time = newestMovement.eventTime; in getEstimator() 673 outEstimator->degree = 2; in getEstimator() 674 outEstimator->confidence = 1; in getEstimator() 675 for (size_t i = 0; i <= outEstimator->degree; i++) { in getEstimator() 676 outEstimator->xCoeff[i] = (*xCoeff)[i]; in getEstimator() 677 outEstimator->yCoeff[i] = (*yCoeff)[i]; in getEstimator() [all …]
|
/frameworks/native/include/input/ |
D | VelocityTracker.h | 96 bool getEstimator(uint32_t id, Estimator* outEstimator) const; 132 virtual bool getEstimator(uint32_t id, VelocityTracker::Estimator* outEstimator) const = 0; 164 virtual bool getEstimator(uint32_t id, VelocityTracker::Estimator* outEstimator) const; 207 virtual bool getEstimator(uint32_t id, VelocityTracker::Estimator* outEstimator) const; 225 void populateEstimator(const State& state, VelocityTracker::Estimator* outEstimator) const; 241 virtual bool getEstimator(uint32_t id, VelocityTracker::Estimator* outEstimator) const; 276 virtual bool getEstimator(uint32_t id, VelocityTracker::Estimator* outEstimator) const;
|
/frameworks/base/core/java/android/view/ |
D | VelocityTracker.java | 48 private static native boolean nativeGetEstimator(long ptr, int id, Estimator outEstimator); in nativeGetEstimator() argument 214 public boolean getEstimator(int id, Estimator outEstimator) { in getEstimator() argument 215 if (outEstimator == null) { in getEstimator() 218 return nativeGetEstimator(mPtr, id, outEstimator); in getEstimator()
|
/frameworks/base/core/jni/ |
D | android_view_VelocityTracker.cpp | 54 bool getEstimator(int32_t id, VelocityTracker::Estimator* outEstimator); 135 bool VelocityTrackerState::getEstimator(int32_t id, VelocityTracker::Estimator* outEstimator) { in getEstimator() argument 136 return mVelocityTracker.getEstimator(id, outEstimator); in getEstimator()
|