Searched refs:fBools (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/icu/source/common/unicode/
H A Denumset.h32 inline EnumSet() : fBools(0) {}
33 inline EnumSet(const EnumSet<T,minValue,limitValue>& other) : fBools(other.fBools) {}
35 inline void clear() { fBools=0; }
39 inline void set(T toSet, int32_t v) { fBools=(fBools&(~flag(toSet)))|(v?(flag(toSet)):0); }
40 inline int32_t get(T toCheck) const { return (fBools & flag(toCheck))?1:0; }
44 fBools = other.fBools;
49 return fBools;
55 uint32_t fBools; member in class:EnumSet
[all...]
/external/icu/icu4c/source/common/unicode/
H A Denumset.h33 inline EnumSet() : fBools(0) {}
34 inline EnumSet(const EnumSet<T,minValue,limitValue>& other) : fBools(other.fBools) {}
37 inline void clear() { fBools=0; }
41 inline void set(T toSet, int32_t v) { fBools=(fBools&(~flag(toSet)))|(v?(flag(toSet)):0); }
42 inline int32_t get(T toCheck) const { return (fBools & flag(toCheck))?1:0; }
46 fBools = other.fBools;
51 return fBools;
58 uint32_t fBools; member in class:EnumSet
[all...]
/external/skia/include/utils/
H A DSkJSON.h262 return fArray.fBools;
275 bool* fBools; member in union:SkJSON::Array::__anon30523

Completed in 266 milliseconds