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

  /external/chromium_org/ui/events/gesture_detection/
velocity_tracker.h 113 inline BitSet32 GetCurrentPointerIdBits() const {
121 void ClearPointers(BitSet32 id_bits);
132 BitSet32 id_bits,
141 BitSet32 current_pointer_id_bits_;
bitset_32.h 13 // Port of BitSet32 from Android
17 struct BitSet32 {
20 inline BitSet32() : value(0) {}
21 explicit inline BitSet32(uint32_t value) : value(value) {}
97 inline bool operator==(const BitSet32& other) const {
100 inline bool operator!=(const BitSet32& other) const {
velocity_tracker_state.h 42 BitSet32 calculated_id_bits_;
velocity_tracker.cc 23 virtual void ClearPointers(BitSet32 id_bits) = 0;
25 BitSet32 id_bits,
125 virtual void ClearPointers(BitSet32 id_bits) OVERRIDE;
127 BitSet32 id_bits,
140 BitSet32 id_bits;
164 virtual void ClearPointers(BitSet32 id_bits) OVERRIDE;
166 BitSet32 id_bits,
182 BitSet32 pointer_id_bits_;
244 void VelocityTracker::ClearPointers(BitSet32 id_bits) {
245 BitSet32 remaining_id_bits(current_pointer_id_bits_.value & ~id_bits.value)
    [all...]
touch_disposition_gesture_filter.h 76 BitSet32 last_gesture_of_type_dropped_;
bitset_32_unittest.cc 14 BitSet32 bits;
73 EXPECT_EQ(BitSet32(), bits);
velocity_tracker_state.cc 39 BitSet32 id_bits(velocity_tracker_.GetCurrentPointerIdBits());
  /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 364 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 786 BitSet32 hoveringIdBits, touchingIdBits;
822 BitSet32 hoveringIdBits, touchingIdBits;
    [all...]
InputDispatcher.h 160 BitSet32 pointerIds;
    [all...]
InputReader.cpp     [all...]
InputDispatcher.cpp 155 BitSet32 pointerIdBits;
    [all...]
EventHub.h 419 BitSet32 mControllerNumbers;
  /frameworks/native/libs/input/
VelocityControl.cpp 69 mVelocityTracker.addMovement(eventTime, BitSet32(BitSet32::valueForBit(0)), &mRawPosition);
VelocityTracker.cpp 209 void VelocityTracker::clearPointers(BitSet32 idBits) {
210 BitSet32 remainingIdBits(mCurrentPointerIdBits.value & ~idBits.value);
220 void VelocityTracker::addMovement(nsecs_t eventTime, BitSet32 idBits, const Position* positions) {
247 for (BitSet32 iterBits(idBits); !iterBits.isEmpty(); ) {
277 BitSet32 downIdBits;
302 BitSet32 idBits;
371 void LeastSquaresVelocityTrackerStrategy::clearPointers(BitSet32 idBits) {
372 BitSet32 remainingIdBits(mMovements[mIndex].idBits.value & ~idBits.value);
376 void LeastSquaresVelocityTrackerStrategy::addMovement(nsecs_t eventTime, BitSet32 idBits,
706 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;
  /external/chromium_org/content/browser/renderer_host/input/
touch_event_queue.h 196 ui::BitSet32 touch_consumer_states_;
  /frameworks/base/core/jni/
android_view_VelocityTracker.cpp 62 BitSet32 mCalculatedIdBits;
81 BitSet32 idBits(mVelocityTracker.getCurrentPointerIdBits());
  /frameworks/base/libs/input/
PointerController.h 93 const uint32_t* spotIdToIndex, BitSet32 spotIdBits);
PointerController.cpp 244 const uint32_t* spotIdToIndex, BitSet32 spotIdBits) {
247 for (BitSet32 idBits(spotIdBits); !idBits.isEmpty(); ) {
263 for (BitSet32 idBits(spotIdBits); !idBits.isEmpty(); ) {
  /frameworks/native/services/surfaceflinger/DisplayHardware/
HWComposer.h 363 BitSet32 mAllocatedDisplayIDs;
  /frameworks/native/services/inputflinger/tests/
InputReader_test.cpp 117 const uint32_t* spotIdToIndex, BitSet32 spotIdBits) {
    [all...]

Completed in 1081 milliseconds