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

  /frameworks/native/include/input/
VelocityTracker.h 76 void clearPointers(BitSet32 idBits);
79 // The idBits bitfield specifies the pointer ids of the pointers whose positions
82 // increasing id. Its size should be equal to the number of one bits in idBits.
83 void addMovement(nsecs_t eventTime, BitSet32 idBits, const Position* positions);
129 virtual void clearPointers(BitSet32 idBits) = 0;
130 virtual void addMovement(nsecs_t eventTime, BitSet32 idBits,
161 virtual void clearPointers(BitSet32 idBits);
162 virtual void addMovement(nsecs_t eventTime, BitSet32 idBits,
177 BitSet32 idBits;
181 return positions[idBits.getIndexOfBit(id)]
    [all...]
InputTransport.h 356 BitSet32 idBits;
362 idBits.clear();
365 idBits.markBit(id);
389 lastResample.idBits.clear();
  /frameworks/native/libs/input/
VelocityTracker.cpp 209 void VelocityTracker::clearPointers(BitSet32 idBits) {
210 BitSet32 remainingIdBits(mCurrentPointerIdBits.value & ~idBits.value);
213 if (mActivePointerId >= 0 && idBits.hasBit(mActivePointerId)) {
217 mStrategy->clearPointers(idBits);
220 void VelocityTracker::addMovement(nsecs_t eventTime, BitSet32 idBits, const Position* positions) {
221 while (idBits.count() > MAX_POINTERS) {
222 idBits.clearLastMarkedBit();
225 if ((mCurrentPointerIdBits.value & idBits.value)
237 mCurrentPointerIdBits = idBits;
238 if (mActivePointerId < 0 || !idBits.hasBit(mActivePointerId))
    [all...]
  /frameworks/base/core/java/android/view/
MotionEvent.java     [all...]

Completed in 59 milliseconds