Lines Matching defs:Has
268 // if (h.Has(CPUFeatures::kNEON)) { ... }
269 // if (h.Has(CPUFeatures::kFP, CPUFeatures::kNEON)) { ... }
270 // if (h.Has(g)) { ... }
272 // VIXL_ASSERT(h.Has(CPUFeatures()));
306 // checking: `Has(...)` returns true regardless of the argument.
378 bool Has(const CPUFeatures& other) const;
381 // Note that `Has(kNone)` always returns true.
382 bool Has(Feature feature) const;
386 bool Has(T first, U... others) const {
387 return Has(first) && Has(others...);
396 return Has(other) && other.Has(*this);
453 return cpu_features_->Has(feature_);