Lines Matching refs:flags
50 #include "base/flags.hh"
99 static const FlagsType PublicRead = 0x003f; // public readable flags
100 static const FlagsType PublicWrite = 0x001d; // public writable flags
211 Flags flags;
248 return (flags & InitMask) == Initialized;
252 /// Accessor for flags.
256 return flags & PublicRead;
263 return flags.isSet(_flags);
266 /// Accessor for flags.
271 flags.set(_flags);
278 flags.clear(_flags);
284 flags.clear(PublicWrite);
318 if (flags.isSet(Event::Managed))
326 if (flags.isSet(Event::Managed))
347 flags(Initialized | f)
385 bool scheduled() const { return flags.isSet(Scheduled); }
388 void squash() { flags.set(Squashed); }
391 bool squashed() const { return flags.isSet(Squashed); }
394 bool isExitEvent() const { return flags.isSet(IsExitEvent); }
397 bool isManaged() const { return flags.isSet(Managed); }