OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NUM_SAMPLE_DATA
(Results
1 - 3
of
3
) sorted by null
/frameworks/base/services/java/com/android/server/
InputDevice.java
60
final int[] curTouchVals = new int[MotionEvent.
NUM_SAMPLE_DATA
* 2];
83
final int[] mLastData = new int[MotionEvent.
NUM_SAMPLE_DATA
* MAX_POINTERS];
91
final int[] mNextData = new int[(MotionEvent.
NUM_SAMPLE_DATA
* MAX_POINTERS)
92
+ MotionEvent.
NUM_SAMPLE_DATA
];
106
final int[] mHistoryData = new int[(MotionEvent.
NUM_SAMPLE_DATA
* MAX_POINTERS)
108
final int[] mAveragedData = new int[MotionEvent.
NUM_SAMPLE_DATA
* MAX_POINTERS];
116
final float[] mReportData = new float[MotionEvent.
NUM_SAMPLE_DATA
* MAX_POINTERS];
208
final int ioff = i * MotionEvent.
NUM_SAMPLE_DATA
;
220
final int joff = j * MotionEvent.
NUM_SAMPLE_DATA
;
265
int ioff = i * MotionEvent.
NUM_SAMPLE_DATA
;
[
all
...]
KeyInputQueue.java
688
di.curTouchVals[MotionEvent.
NUM_SAMPLE_DATA
693
di.curTouchVals[MotionEvent.
NUM_SAMPLE_DATA
728
? (num * MotionEvent.
NUM_SAMPLE_DATA
)
730
MotionEvent.
NUM_SAMPLE_DATA
);
[
all
...]
/frameworks/base/core/java/android/view/
MotionEvent.java
206
static public final int
NUM_SAMPLE_DATA
= 4;
242
// Array of (mNumSamples * mNumPointers *
NUM_SAMPLE_DATA
) size of event data.
253
mDataSamples = new float[BASE_AVAIL_POINTERS*BASE_AVAIL_SAMPLES*
NUM_SAMPLE_DATA
];
287
* @param inData An array of <em>pointers*
NUM_SAMPLE_DATA
</em> of initial
324
final int ND = pointers *
NUM_SAMPLE_DATA
;
340
sb.append(ev.mDataSamples[(i*
NUM_SAMPLE_DATA
) + SAMPLE_X]);
342
sb.append(ev.mDataSamples[(i*
NUM_SAMPLE_DATA
) + SAMPLE_Y]);
524
final int length = mNumPointers * mNumSamples *
NUM_SAMPLE_DATA
;
525
for (int i = 0; i < length; i +=
NUM_SAMPLE_DATA
) {
564
final int ND = NP * NS *
NUM_SAMPLE_DATA
;
[
all
...]
Completed in 119 milliseconds