Lines Matching defs:Remove
256 // f.Remove(CPUFeatures::kNEON);
259 // f.Remove(CPUFeatures::All());
347 // Remove features in another CPUFeatures object from this one.
348 void Remove(const CPUFeatures& other);
350 // Remove a specific feature from this set. This has no effect if the feature
352 void Remove(Feature feature0);
354 // Remove multiple features (or feature sets) from this set.
356 void Remove(T first, U... others) {
357 Remove(first);
358 Remove(others...);
373 f.Remove(others...);