Searched refs:outEstimator (Results 1 – 4 of 4) sorted by relevance
/aosp12/frameworks/native/libs/input/ |
H A D | VelocityTracker.cpp | 595 outEstimator->clear(); in getEstimator() 673 outEstimator->degree = 0; in getEstimator() 674 outEstimator->confidence = 1; in getEstimator() 783 outEstimator->clear(); in getEstimator() 900 outEstimator->clear(); in getEstimator() 1133 outEstimator->clear(); in getEstimator() 1163 outEstimator->xCoeff[0] = 0; in getEstimator() 1164 outEstimator->yCoeff[0] = 0; in getEstimator() 1167 outEstimator->xCoeff[2] = 0; in getEstimator() 1168 outEstimator->yCoeff[2] = 0; in getEstimator() [all …]
|
/aosp12/frameworks/native/include/input/ |
H A 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;
|
/aosp12/frameworks/base/core/java/android/view/ |
H A 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()
|
/aosp12/frameworks/base/core/jni/ |
H A 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()
|