HomeSort by relevance Sort by last modified time
    Searched defs:pointerCoords (Results 1 - 22 of 22) sorted by null

  /frameworks/native/libs/input/tests/
InputEvent_test.cpp 37 PointerCoords coords;
45 PointerCoords coords;
130 for (size_t axis = 4; axis < PointerCoords::MAX_AXES; axis++) {
133 ASSERT_EQ(PointerCoords::MAX_AXES, __builtin_popcountll(coords.bits));
137 ASSERT_EQ(NO_MEMORY, coords.setAxisValue(PointerCoords::MAX_AXES, 100));
138 ASSERT_EQ(PointerCoords::MAX_AXES, __builtin_popcountll(coords.bits));
144 PointerCoords inCoords;
146 PointerCoords outCoords;
230 PointerCoords pointerCoords[2]
    [all...]
InputPublisherAndConsumer_test.cpp 149 PointerCoords pointerCoords[pointerCount];
155 pointerCoords[i].clear();
156 pointerCoords[i].setAxisValue(AMOTION_EVENT_AXIS_X, 100 * i);
157 pointerCoords[i].setAxisValue(AMOTION_EVENT_AXIS_Y, 200 * i);
158 pointerCoords[i].setAxisValue(AMOTION_EVENT_AXIS_PRESSURE, 0.5 * i);
159 pointerCoords[i].setAxisValue(AMOTION_EVENT_AXIS_SIZE, 0.7 * i);
160 pointerCoords[i].setAxisValue(AMOTION_EVENT_AXIS_TOUCH_MAJOR, 1.5 * i);
161 pointerCoords[i].setAxisValue(AMOTION_EVENT_AXIS_TOUCH_MINOR, 1.7 * i);
162 pointerCoords[i].setAxisValue(AMOTION_EVENT_AXIS_TOOL_MAJOR, 2.5 * i)
    [all...]
  /frameworks/native/services/inputflinger/tests/
InputDispatcher_test.cpp 144 PointerCoords pointerCoords[MAX_POINTERS + 1];
148 pointerCoords[i].clear();
155 /*pointerCount*/ 1, pointerProperties, pointerCoords);
166 /*pointerCount*/ 1, pointerProperties, pointerCoords);
176 /*pointerCount*/ 1, pointerProperties, pointerCoords);
187 /*pointerCount*/ 1, pointerProperties, pointerCoords);
197 /*pointerCount*/ 1, pointerProperties, pointerCoords);
207 /*pointerCount*/ 0, pointerProperties, pointerCoords);
216 /*pointerCount*/ MAX_POINTERS + 1, pointerProperties, pointerCoords);
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/util/
MotionEventHelper.java 21 import android.view.MotionEvent.PointerCoords;
52 PointerCoords[] pointerCoords = getPointerCoords(e);
62 float[] xy = new float[pointerCoords.length * 2];
64 xy[2 * i] = pointerCoords[i].x;
65 xy[2 * i + 1] = pointerCoords[i].y;
69 pointerCoords[i].x = xy[2 * i];
70 pointerCoords[i].y = xy[2 * i + 1];
71 pointerCoords[i].orientation = transformAngle(
72 m, pointerCoords[i].orientation)
    [all...]
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeyMotionEvent.java 34 private SparseArray<MotionEvent.PointerCoords> mPointers;
52 mPointers = new SparseArray<MotionEvent.PointerCoords>();
63 MotionEvent.PointerCoords c = new MotionEvent.PointerCoords();
131 MotionEvent.PointerCoords[] pointerCoords = new MotionEvent.PointerCoords[pointerCount];
134 pointerCoords[i] = mPointers.valueAt(i);
139 mAction, pointerCount, pointerIds, pointerCoords,
  /frameworks/native/services/inputflinger/
InputListener.h 95 PointerCoords pointerCoords[MAX_POINTERS];
106 const PointerProperties* pointerProperties, const PointerCoords* pointerCoords,
InputDispatcher.h 518 PointerCoords pointerCoords[MAX_POINTERS];
526 const PointerProperties* pointerProperties, const PointerCoords* pointerCoords,
770 PointerCoords pointerCoords[MAX_POINTERS];
    [all...]
InputReader.cpp     [all...]
InputReader.h 864 PointerCoords pointerCoords[MAX_POINTERS];
872 inline const PointerCoords& pointerCoordsForId(uint32_t id) const {
873 return pointerCoords[idToIndex[id]];
876 inline PointerCoords& editPointerCoordsWithId(uint32_t id) {
877 return pointerCoords[idToIndex[id]];
    [all...]
  /frameworks/native/libs/input/
InputTransport.cpp 299 const PointerCoords* pointerCoords) {
342 msg.body.motion.pointers[i].coords.copyFrom(pointerCoords[i]);
663 PointerCoords& msgCoords = msg->body.motion.pointers[i].coords;
664 const PointerCoords& resampleCoords = state.lastResample.getPointerById(id);
767 PointerCoords& resampledCoords = touchState.lastResample.pointers[i];
768 const PointerCoords& currentCoords = current->getPointerById(id);
771 const PointerCoords& otherCoords = other->getPointerById(id);
902 PointerCoords pointerCoords[pointerCount]
    [all...]
  /cts/tests/tests/view/src/android/view/cts/
MotionEventTest.java 28 import android.view.MotionEvent.PointerCoords;
347 final PointerCoords[] pointerCoords = new PointerCoords[pointerCount];
349 final PointerCoords c = new PointerCoords();
352 pointerCoords[i] = c;
358 pointerCount, pointerIds, pointerCoords, 0, 0, 0, 0, 0, 0, 0);
383 final PointerCoords c = pointerCoords[i]
    [all...]
  /prebuilts/misc/common/power-helper/
PowerTestHelper.jar 
  /prebuilts/misc/common/ub-uiautomator/
ub-uiautomator.jar 
  /external/robolectric/lib/main/
android.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/15/
android.jar 
  /prebuilts/sdk/17/
android.jar 
  /prebuilts/sdk/18/
android.jar 
  /prebuilts/sdk/19/
android.jar 
  /prebuilts/sdk/20/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/9/
android.jar 

Completed in 326 milliseconds