Home | History | Annotate | Download | only in extensions

Lines Matching refs:value_

75     ContextList() : value_(0) {}
76 explicit ContextList(Context context) : value_(context) {}
77 ContextList(const ContextList& other) : value_(other.value_) {}
80 value_ = other.value_;
84 return value_ == other.value_;
92 return (value_ & context) > 0;
96 value_ |= context;
100 uint32 value_; // A bitmask of Context values.