Lines Matching defs:first
301 CPUFeatures(T first, U... others) : features_{} {
302 Combine(first, others...);
342 void Combine(T first, U... others) {
343 Combine(first);
356 void Remove(T first, U... others) {
357 Remove(first);
386 bool Has(T first, U... others) const {
387 return Has(first) && Has(others...);
483 CPUFeaturesScope(T* cpu_features_wrapper, U first, V... features)
486 cpu_features_->Combine(first, features...);