Lines Matching defs:Features
52 class Features;
63 Features features = SupportedFeatures(),
132 class Features final {
134 Features() : bits_(0) {}
135 explicit Features(unsigned bits) : bits_(bits) {}
136 explicit Features(CpuFeature f) : bits_(1u << f) {}
137 Features(CpuFeature f1, CpuFeature f2) : bits_((1u << f1) | (1u << f2)) {}
149 // Returns the features supported on the target platform.
150 static Features SupportedFeatures() {
151 return Features(CpuFeatures::SupportedFeatures());
400 Features features_;