Searched refs:outEstimator (Results 1 – 4 of 4) sorted by relevance
/frameworks/native/libs/input/ |
D | VelocityTracker.cpp | 319 bool VelocityTracker::getEstimator(uint32_t id, Estimator* outEstimator) const { in getEstimator() 320 return mStrategy->getEstimator(id, outEstimator); in getEstimator() 594 VelocityTracker::Estimator* outEstimator) const { in getEstimator() 595 outEstimator->clear(); in getEstimator() 640 outEstimator->time = newestMovement.eventTime; in getEstimator() 641 outEstimator->degree = 2; in getEstimator() 642 outEstimator->confidence = 1; in getEstimator() 643 for (size_t i = 0; i <= outEstimator->degree; i++) { in getEstimator() 644 outEstimator->xCoeff[i] = (*xCoeff)[i]; in getEstimator() 645 outEstimator->yCoeff[i] = (*yCoeff)[i]; in getEstimator() [all …]
|
/frameworks/native/include/input/ |
D | VelocityTracker.h | 112 bool getEstimator(uint32_t id, Estimator* outEstimator) const; 153 virtual bool getEstimator(uint32_t id, VelocityTracker::Estimator* outEstimator) const = 0; 185 virtual bool getEstimator(uint32_t id, VelocityTracker::Estimator* outEstimator) const; 228 virtual bool getEstimator(uint32_t id, VelocityTracker::Estimator* outEstimator) const; 246 void populateEstimator(const State& state, VelocityTracker::Estimator* outEstimator) const; 262 virtual bool getEstimator(uint32_t id, VelocityTracker::Estimator* outEstimator) const; 297 virtual bool getEstimator(uint32_t id, VelocityTracker::Estimator* outEstimator) const;
|
/frameworks/base/core/java/android/view/ |
D | VelocityTracker.java | 185 private static native boolean nativeGetEstimator(long ptr, int id, Estimator outEstimator); in nativeGetEstimator() argument 414 public boolean getEstimator(int id, Estimator outEstimator) { in getEstimator() argument 415 if (outEstimator == null) { in getEstimator() 418 return nativeGetEstimator(mPtr, id, outEstimator); in getEstimator()
|
/frameworks/base/core/jni/ |
D | android_view_VelocityTracker.cpp | 52 bool getEstimator(int32_t id, VelocityTracker::Estimator* outEstimator); 132 bool VelocityTrackerState::getEstimator(int32_t id, VelocityTracker::Estimator* outEstimator) { in getEstimator() argument 133 return mVelocityTracker.getEstimator(id, outEstimator); in getEstimator()
|