Lines Matching defs:eventTime

1408      * @param eventTime The the time (in ms) when this specific event was generated.  This 
1430 static public MotionEvent obtain(long downTime, long eventTime,
1439 downTime * NS_PER_MS, eventTime * NS_PER_MS,
1450 * @param eventTime The the time (in ms) when this specific event was generated. This
1474 static public MotionEvent obtain(long downTime, long eventTime,
1485 return obtain(downTime, eventTime, action, pointerCount, pp,
1497 * @param eventTime The the time (in ms) when this specific event was generated. This
1520 static public MotionEvent obtain(long downTime, long eventTime, int action,
1540 downTime * NS_PER_MS, eventTime * NS_PER_MS,
1552 * @param eventTime The the time (in ms) when this specific event was generated. This
1580 static public MotionEvent obtain(long downTime, long eventTime, int action,
1583 return obtain(downTime, eventTime, action, x, y, pressure, size,
1594 * @param eventTime The the time (in ms) when this specific event was generated. This
1602 static public MotionEvent obtain(long downTime, long eventTime, int action,
1604 return obtain(downTime, eventTime, action, x, y, 1.0f, 1.0f,
2724 * @param eventTime The time stamp (in ms) for this data.
2731 public final void addBatch(long eventTime, float x, float y,
2742 nativeAddBatch(mNativePtr, eventTime * NS_PER_MS, pc, metaState);
2753 * @param eventTime The time stamp (in ms) for this data.
2757 public final void addBatch(long eventTime, PointerCoords[] pointerCoords, int metaState) {
2758 nativeAddBatch(mNativePtr, eventTime * NS_PER_MS, pointerCoords, metaState);
2997 msg.append(", eventTime=").append(getEventTime());