Lines Matching refs:eventTime

1537      * @param eventTime The the time (in ms) when this specific event was generated.  This 
1559 static public MotionEvent obtain(long downTime, long eventTime,
1568 downTime * NS_PER_MS, eventTime * NS_PER_MS,
1579 * @param eventTime The the time (in ms) when this specific event was generated. This
1603 static public MotionEvent obtain(long downTime, long eventTime,
1614 return obtain(downTime, eventTime, action, pointerCount, pp,
1626 * @param eventTime The the time (in ms) when this specific event was generated. This
1649 static public MotionEvent obtain(long downTime, long eventTime, int action,
1669 downTime * NS_PER_MS, eventTime * NS_PER_MS,
1681 * @param eventTime The the time (in ms) when this specific event was generated. This
1709 static public MotionEvent obtain(long downTime, long eventTime, int action,
1712 return obtain(downTime, eventTime, action, x, y, pressure, size,
1723 * @param eventTime The the time (in ms) when this specific event was generated. This
1731 static public MotionEvent obtain(long downTime, long eventTime, int action,
1733 return obtain(downTime, eventTime, action, x, y, 1.0f, 1.0f,
2901 * @param eventTime The time stamp (in ms) for this data.
2908 public final void addBatch(long eventTime, float x, float y,
2919 nativeAddBatch(mNativePtr, eventTime * NS_PER_MS, pc, metaState);
2930 * @param eventTime The time stamp (in ms) for this data.
2934 public final void addBatch(long eventTime, PointerCoords[] pointerCoords, int metaState) {
2935 nativeAddBatch(mNativePtr, eventTime * NS_PER_MS, pointerCoords, metaState);
3175 msg.append(", eventTime=").append(getEventTime());