Home
last modified time | relevance | path

Searched defs:InfoByHwMode (Results 1 – 1 of 1) sorted by relevance

/openbsd-src/gnu/llvm/llvm/utils/TableGen/
H A DInfoByHwMode.h58 struct InfoByHwMode { struct
64 InfoByHwMode() = default; argument
65 InfoByHwMode(const MapType &M) : Map(M) {} in InfoByHwMode() function
68 iterator begin() { return Map.begin(); } in begin()
70 iterator end() { return Map.end(); } in end()
72 const_iterator begin() const { return Map.begin(); } in begin()
74 const_iterator end() const { return Map.end(); } in end()
76 bool empty() const { return Map.empty(); } in empty()
79 bool hasMode(unsigned M) const { return Map.find(M) != Map.end(); } in hasMode()
81 bool hasDefault() const { return hasMode(DefaultMode); } in hasDefault()
[all …]