Lines Matching refs:kInvalid
104 kInvalid = (static_cast<uint32_t>(-1) & kValueBitMask), enumerator
132 static_assert(helper::ToUint(Value::kMax) < helper::ToUint(Value::kInvalid));
174 explicit ApiList(DomainApi val) : ApiList(Value::kInvalid, helper::ToBit(val)) {} in ApiList()
180 if (value == helper::ToUint(Value::kInvalid)) { in GetValue()
181 return Value::kInvalid; in GetValue()
196 ApiList() : ApiList(Value::kInvalid) {} in ApiList()
230 static_assert(helper::ToUint(Value::kMax) + 1 < helper::ToUint(Value::kInvalid)); in FromName()
270 return (val1 == val2) || (val1 == Value::kInvalid) || (val2 == Value::kInvalid); in CanCombineWith()
284 } else if (val1 == Value::kInvalid) {
286 } else if (val2 == Value::kInvalid) {
302 return ((other.GetValue() == Value::kInvalid) || (GetValue() == other.GetValue())) && in Contains()
307 bool IsValid() const { return GetValue() != Value::kInvalid; } in IsValid()
310 bool IsEmpty() const { return (GetValue() == Value::kInvalid) && (GetDomainApis() == 0); } in IsEmpty()
337 if (GetValue() != Value::kInvalid) { in Dump()