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

  /external/icu4c/common/unicode/
enumset.h 32 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;
    [all...]
  /external/chromium_org/third_party/skia/include/utils/
SkJSON.h 262 return fArray.fBools;
275 bool* fBools;
  /external/skia/include/utils/
SkJSON.h 262 return fArray.fBools;
275 bool* fBools;
  /external/chromium_org/third_party/skia/src/utils/
SkJSON.cpp 488 SkDebugf(" %s,", fArray.fBools[i] ? "true" : "false");
  /external/skia/src/utils/
SkJSON.cpp 488 SkDebugf(" %s,", fArray.fBools[i] ? "true" : "false");

Completed in 266 milliseconds