Searched defs:outEstimator (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/view/
H A DVelocityTracker.java65 private static native boolean nativeGetEstimator(int ptr, int id, Estimator outEstimator); argument
250 * @param outEstimator The estimator to populate.
256 public boolean getEstimator(int id, Estimator outEstimator) { argument
257 if (outEstimator == null) {
258 throw new IllegalArgumentException("outEstimator must not be null");
260 return nativeGetEstimator(mPtr, id, outEstimator);
/frameworks/base/core/jni/
H A Dandroid_view_VelocityTracker.cpp53 bool getEstimator(int32_t id, VelocityTracker::Estimator* outEstimator);
134 bool VelocityTrackerState::getEstimator(int32_t id, VelocityTracker::Estimator* outEstimator) { argument
135 return mVelocityTracker.getEstimator(id, outEstimator);

Completed in 41 milliseconds