Searched refs:outEstimator (Results 1 – 4 of 4) sorted by relevance
/frameworks/native/libs/input/ |
D | VelocityTracker.cpp | 338 bool VelocityTracker::getEstimator(uint32_t id, Estimator* outEstimator) const { in getEstimator() 339 return mStrategy->getEstimator(id, outEstimator); in getEstimator() 612 VelocityTracker::Estimator* outEstimator) const { in getEstimator() 613 outEstimator->clear(); in getEstimator() 658 outEstimator->time = newestMovement.eventTime; in getEstimator() 659 outEstimator->degree = 2; in getEstimator() 660 outEstimator->confidence = 1; in getEstimator() 661 for (size_t i = 0; i <= outEstimator->degree; i++) { in getEstimator() 662 outEstimator->xCoeff[i] = (*xCoeff)[i]; in getEstimator() 663 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 413 public boolean getEstimator(int id, Estimator outEstimator) { in getEstimator() argument 414 if (outEstimator == null) { in getEstimator() 417 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()
|