OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getEstimator
(Results
1 - 5
of
5
) sorted by null
/frameworks/base/include/androidfw/
VelocityTracker.h
96
bool
getEstimator
(uint32_t id, Estimator* outEstimator) const;
132
virtual bool
getEstimator
(uint32_t id, VelocityTracker::Estimator* outEstimator) const = 0;
164
virtual bool
getEstimator
(uint32_t id, VelocityTracker::Estimator* outEstimator) const;
207
virtual bool
getEstimator
(uint32_t id, VelocityTracker::Estimator* outEstimator) const;
241
virtual bool
getEstimator
(uint32_t id, VelocityTracker::Estimator* outEstimator) const;
/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/android/view/
VelocityTracker.java
256
public boolean
getEstimator
(int id, Estimator outEstimator) {
/frameworks/base/libs/androidfw/
VelocityTracker.cpp
253
getEstimator
(id, &estimator);
338
if (
getEstimator
(id, &estimator) && estimator.degree >= 1) {
348
bool VelocityTracker::
getEstimator
(uint32_t id, Estimator* outEstimator) const {
349
return mStrategy->
getEstimator
(id, outEstimator);
558
bool LeastSquaresVelocityTrackerStrategy::
getEstimator
(uint32_t id,
728
bool IntegratingVelocityTrackerStrategy::
getEstimator
(uint32_t id,
848
bool LegacyVelocityTrackerStrategy::
getEstimator
(uint32_t id,
[
all
...]
/frameworks/base/core/java/com/android/internal/widget/
PointerLocationView.java
573
mVelocity.
getEstimator
(id, ps.mEstimator);
577
mAltVelocity.
getEstimator
(id, ps.mAltEstimator);
Completed in 3602 milliseconds