HomeSort by relevance Sort by last modified time
    Searched refs:BitSet32 (Results 1 - 14 of 14) sorted by null

  /frameworks/native/include/utils/
BitSet.h 30 struct BitSet32 {
33 inline BitSet32() : value(0) { }
34 explicit inline BitSet32(uint32_t value) : value(value) { }
102 inline bool operator== (const BitSet32& other) const { return value == other.value; }
103 inline bool operator!= (const BitSet32& other) const { return value != other.value; }
106 ANDROID_BASIC_TYPES_TRAITS(BitSet32)
  /frameworks/base/include/androidfw/
VelocityTracker.h 76 void clearPointers(BitSet32 idBits);
83 void addMovement(nsecs_t eventTime, BitSet32 idBits, const Position* positions);
102 inline BitSet32 getCurrentPointerIdBits() const { return mCurrentPointerIdBits; }
108 BitSet32 mCurrentPointerIdBits;
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;
204 virtual void clearPointers(BitSet32 idBits)
    [all...]
InputTransport.h 356 BitSet32 idBits;
  /frameworks/base/libs/androidfw/
VelocityControl.cpp 69 mVelocityTracker.addMovement(eventTime, BitSet32(BitSet32::valueForBit(0)), &mRawPosition);
VelocityTracker.cpp 210 void VelocityTracker::clearPointers(BitSet32 idBits) {
211 BitSet32 remainingIdBits(mCurrentPointerIdBits.value & ~idBits.value);
221 void VelocityTracker::addMovement(nsecs_t eventTime, BitSet32 idBits, const Position* positions) {
248 for (BitSet32 iterBits(idBits); !iterBits.isEmpty(); ) {
278 BitSet32 downIdBits;
303 BitSet32 idBits;
372 void LeastSquaresVelocityTrackerStrategy::clearPointers(BitSet32 idBits) {
373 BitSet32 remainingIdBits(mMovements[mIndex].idBits.value & ~idBits.value);
377 void LeastSquaresVelocityTrackerStrategy::addMovement(nsecs_t eventTime, BitSet32 idBits,
707 void IntegratingVelocityTrackerStrategy::clearPointers(BitSet32 idBits)
    [all...]
  /frameworks/base/services/input/
PointerController.h 104 BitSet32 spotIdBits) = 0;
170 const uint32_t* spotIdToIndex, BitSet32 spotIdBits);
InputReader.h 751 BitSet32 hoveringIdBits, touchingIdBits;
787 BitSet32 hoveringIdBits, touchingIdBits;
    [all...]
InputDispatcher.h 160 BitSet32 pointerIds;
    [all...]
InputReader.cpp     [all...]
PointerController.cpp 244 const uint32_t* spotIdToIndex, BitSet32 spotIdBits) {
247 for (BitSet32 idBits(spotIdBits); !idBits.isEmpty(); ) {
263 for (BitSet32 idBits(spotIdBits); !idBits.isEmpty(); ) {
InputDispatcher.cpp 152 BitSet32 pointerIdBits;
    [all...]
  /frameworks/base/core/jni/
android_view_VelocityTracker.cpp 62 BitSet32 mCalculatedIdBits;
81 BitSet32 idBits(mVelocityTracker.getCurrentPointerIdBits());
  /frameworks/native/services/surfaceflinger/DisplayHardware/
HWComposer.h 344 BitSet32 mAllocatedDisplayIDs;
  /frameworks/base/services/input/tests/
InputReader_test.cpp 117 const uint32_t* spotIdToIndex, BitSet32 spotIdBits) {
    [all...]

Completed in 996 milliseconds