/hardware/libhardware/modules/input/evdev/ |
SwitchInputMapper.h | 42 BitSet32 mSwitchValues; 43 BitSet32 mUpdatedSwitchMask;
|
MouseInputMapper.h | 42 BitSet32 mButtonValues; 43 BitSet32 mUpdatedButtonMask;
|
/frameworks/native/include/input/ |
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 | 366 BitSet32 idBits;
|
/system/core/include/utils/ |
BitSet.h | 30 struct BitSet32 { 33 inline BitSet32() : value(0UL) { } 34 explicit inline BitSet32(uint32_t value) : value(value) { } 132 inline bool operator== (const BitSet32& other) const { return value == other.value; } 133 inline bool operator!= (const BitSet32& other) const { return value != other.value; } 134 inline BitSet32 operator& (const BitSet32& other) const { 135 return BitSet32(value & other.value); 137 inline BitSet32& operator&= (const BitSet32& other) [all...] |
/frameworks/native/services/inputflinger/ |
PointerControllerInterface.h | 97 BitSet32 spotIdBits) = 0;
|
InputReader.h | 835 BitSet32 hoveringIdBits, touchingIdBits; 871 BitSet32 hoveringIdBits, touchingIdBits; [all...] |
InputReader.cpp | [all...] |
InputDispatcher.h | 166 BitSet32 pointerIds; [all...] |
InputDispatcher.cpp | 158 BitSet32 pointerIdBits; [all...] |
EventHub.h | 431 BitSet32 mControllerNumbers;
|
/frameworks/native/libs/input/ |
VelocityControl.cpp | 69 mVelocityTracker.addMovement(eventTime, BitSet32(BitSet32::valueForBit(0)), &mRawPosition);
|
VelocityTracker.cpp | 211 void VelocityTracker::clearPointers(BitSet32 idBits) { 212 BitSet32 remainingIdBits(mCurrentPointerIdBits.value & ~idBits.value); 222 void VelocityTracker::addMovement(nsecs_t eventTime, BitSet32 idBits, const Position* positions) { 249 for (BitSet32 iterBits(idBits); !iterBits.isEmpty(); ) { 279 BitSet32 downIdBits; 304 BitSet32 idBits; 373 void LeastSquaresVelocityTrackerStrategy::clearPointers(BitSet32 idBits) { 374 BitSet32 remainingIdBits(mMovements[mIndex].idBits.value & ~idBits.value); 378 void LeastSquaresVelocityTrackerStrategy::addMovement(nsecs_t eventTime, BitSet32 idBits, 709 void IntegratingVelocityTrackerStrategy::clearPointers(BitSet32 idBits) [all...] |
/system/core/libutils/tests/ |
BitSet_test.cpp | 28 BitSet32 b1; 29 BitSet32 b2; 41 BitSet32 tmp = b1 | b2; 57 BitSet32 tmp = b1 & b2; 76 BitSet32 tmp = b1 & b2;
|
/frameworks/base/core/jni/ |
android_view_VelocityTracker.cpp | 63 BitSet32 mCalculatedIdBits; 82 BitSet32 idBits(mVelocityTracker.getCurrentPointerIdBits());
|
/frameworks/base/libs/input/ |
PointerController.h | 105 const uint32_t* spotIdToIndex, BitSet32 spotIdBits);
|
PointerController.cpp | 269 const uint32_t* spotIdToIndex, BitSet32 spotIdBits) { 272 for (BitSet32 idBits(spotIdBits); !idBits.isEmpty(); ) { 288 for (BitSet32 idBits(spotIdBits); !idBits.isEmpty(); ) {
|
/frameworks/base/services/core/jni/ |
com_android_server_tv_TvUinputBridge.cpp | 56 static BitSet32 mtSlots;
|
/frameworks/native/services/surfaceflinger/DisplayHardware/ |
HWComposer_hwc1.h | 385 BitSet32 mAllocatedDisplayIDs;
|
/frameworks/native/services/inputflinger/tests/ |
InputReader_test.cpp | 116 virtual void setSpots(const PointerCoords*, const uint32_t*, BitSet32) { [all...] |