OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MAX_DEGREE
(Results
1 - 3
of
3
) sorted by null
/frameworks/base/core/java/android/view/
VelocityTracker.java
276
// Must match VelocityTracker::Estimator::
MAX_DEGREE
277
private static final int
MAX_DEGREE
= 4;
282
public final float[] xCoeff = new float[
MAX_DEGREE
+ 1];
287
public final float[] yCoeff = new float[
MAX_DEGREE
+ 1];
/frameworks/base/include/androidfw/
VelocityTracker.h
38
static const size_t
MAX_DEGREE
= 4;
44
float xCoeff[
MAX_DEGREE
+ 1], yCoeff[
MAX_DEGREE
+ 1];
57
for (size_t i = 0; i <=
MAX_DEGREE
; i++) {
156
// Degree must be no greater than Estimator::
MAX_DEGREE
.
/frameworks/base/core/jni/
android_view_VelocityTracker.cpp
205
env->SetFloatArrayRegion(xCoeffObj, 0, VelocityTracker::Estimator::
MAX_DEGREE
+ 1,
207
env->SetFloatArrayRegion(yCoeffObj, 0, VelocityTracker::Estimator::
MAX_DEGREE
+ 1,
Completed in 360 milliseconds