Searched defs:BitSet32 (Results 1 - 1 of 1) sorted by relevance

/frameworks/native/include/utils/
H A DBitSet.h30 struct BitSet32 { struct in namespace:android
33 inline BitSet32() : value(0) { } function in struct:android::BitSet32
34 explicit inline BitSet32(uint32_t value) : value(value) { } function in struct:android::BitSet32
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)

Completed in 52 milliseconds