Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/utils/TableGen/
DInfoByHwMode.h60 struct InfoByHwMode { struct
66 InfoByHwMode() = default; argument
67 InfoByHwMode(const MapType &M) : Map(M) {} in InfoByHwMode() argument
70 iterator begin() { return Map.begin(); } in begin()
72 iterator end() { return Map.end(); } in end()
74 const_iterator begin() const { return Map.begin(); } in begin()
76 const_iterator end() const { return Map.end(); } in end()
78 bool empty() const { return Map.empty(); } in empty()
81 bool hasMode(unsigned M) const { return Map.find(M) != Map.end(); } in hasMode()
83 bool hasDefault() const { return hasMode(DefaultMode); } in hasDefault()
[all …]