Lines Matching defs:const
334 void Combine(const CPUFeatures& other);
348 void Remove(const CPUFeatures& other);
364 CPUFeatures With(T... others) const {
371 CPUFeatures Without(T... others) const {
378 bool Has(const CPUFeatures& other) const;
382 bool Has(Feature feature) const;
386 bool Has(T first, U... others) const {
391 size_t Count() const;
392 bool HasNoFeatures() const { return Count() == 0; }
395 bool operator==(const CPUFeatures& other) const {
398 bool operator!=(const CPUFeatures& other) const { return !(*this == other); }
402 const_iterator begin() const;
403 const_iterator end() const;
410 const vixl::CPUFeatures& features);
414 std::ostream& operator<<(std::ostream& os, const vixl::CPUFeatures& features);
420 CPUFeaturesConstIterator(const CPUFeatures* cpu_features = NULL,
426 bool operator==(const CPUFeaturesConstIterator& other) const;
427 bool operator!=(const CPUFeaturesConstIterator& other) const {
433 CPUFeatures::Feature operator*() const {
446 const CPUFeatures* cpu_features_;
449 bool IsValid() const {
494 CPUFeatures* GetCPUFeatures() const { return cpu_features_; }
496 void SetCPUFeatures(const CPUFeatures& cpu_features) {
501 CPUFeatures* const cpu_features_;
502 const CPUFeatures old_features_;