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

  /external/chromium_org/ui/events/gesture_detection/
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 {
  /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...]

Completed in 212 milliseconds