OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:getEstimator
(Results
1 - 4
of
4
) sorted by null
/frameworks/base/core/java/android/view/
VelocityTracker.java
212
public boolean
getEstimator
(int id, Estimator outEstimator) {
/frameworks/base/core/jni/
android_view_VelocityTracker.cpp
53
bool
getEstimator
(int32_t id, VelocityTracker::Estimator* outEstimator);
134
bool VelocityTrackerState::
getEstimator
(int32_t id, VelocityTracker::Estimator* outEstimator) {
135
return mVelocityTracker.
getEstimator
(id, outEstimator);
198
bool result = state->
getEstimator
(id, &estimator);
/frameworks/base/core/java/com/android/internal/widget/
PointerLocationView.java
606
mVelocity.
getEstimator
(id, ps.mEstimator);
610
mAltVelocity.
getEstimator
(id, ps.mAltEstimator);
[
all
...]
/frameworks/native/libs/input/
VelocityTracker.cpp
252
getEstimator
(id, &estimator);
337
if (
getEstimator
(id, &estimator) && estimator.degree >= 1) {
347
bool VelocityTracker::
getEstimator
(uint32_t id, Estimator* outEstimator) const {
348
return mStrategy->
getEstimator
(id, outEstimator);
557
bool LeastSquaresVelocityTrackerStrategy::
getEstimator
(uint32_t id,
727
bool IntegratingVelocityTrackerStrategy::
getEstimator
(uint32_t id,
847
bool LegacyVelocityTrackerStrategy::
getEstimator
(uint32_t id,
[
all
...]
Completed in 2619 milliseconds