OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:yCoeff
(Results
1 - 3
of
3
) sorted by null
/frameworks/base/core/java/android/view/
VelocityTracker.java
243
public final float[]
yCoeff
= new float[MAX_DEGREE + 1];
270
return estimate(time,
yCoeff
);
288
return index <= degree ?
yCoeff
[index] : 0;
/frameworks/base/core/jni/
android_view_VelocityTracker.cpp
37
jfieldID
yCoeff
;
203
gEstimatorClassInfo.
yCoeff
));
208
estimator.
yCoeff
);
263
GET_FIELD_ID(gEstimatorClassInfo.
yCoeff
, clazz,
264
"
yCoeff
", "[F");
/frameworks/native/include/input/
VelocityTracker.h
44
float xCoeff[MAX_DEGREE + 1],
yCoeff
[MAX_DEGREE + 1];
59
yCoeff
[i] = 0;
Completed in 1702 milliseconds