Lines Matching defs:others
301 CPUFeatures(T first, U... others) : features_{} {
302 Combine(first, others...);
342 void Combine(T first, U... others) {
344 Combine(others...);
356 void Remove(T first, U... others) {
358 Remove(others...);
364 CPUFeatures With(T... others) const {
366 f.Combine(others...);
371 CPUFeatures Without(T... others) const {
373 f.Remove(others...);
386 bool Has(T first, U... others) const {
387 return Has(first) && Has(others...);