Lines Matching refs:KT
204 template<typename VT, typename KT>
205 VT map(KT Key) { in map()
206 return SPIRVMap<KT, VT>::map(Key); in map()
209 template<typename KT, typename VT>
210 KT rmap(VT V) { in rmap()
211 return SPIRVMap<KT, VT>::rmap(V); in rmap()
214 template<typename VT, typename KT>
216 map(const std::unordered_set<KT> &KSet) { in map()
220 if (SPIRVMap<KT, VT>::find(I, &V)) in map()
225 template<typename VT, typename KT>
227 map(const std::set<KT> &KSet) { in map()
231 if (SPIRVMap<KT, VT>::find(I, &V)) in map()
236 template<typename KT, typename VT>
237 std::unordered_set<KT>
239 KT V; in rmap()
240 std::unordered_set<KT> VSet; in rmap()
242 if (SPIRVMap<KT, VT>::rfind(I, &V)) in rmap()
247 template<typename KT, typename VT>
248 std::set<KT>
250 KT V; in rmap()
251 std::set<KT> VSet; in rmap()
253 if (SPIRVMap<KT, VT>::rfind(I, &V)) in rmap()
258 template<typename KT, typename VT, typename Any>
259 std::set<KT>
261 KT V; in rmap()
262 std::set<KT> VSet; in rmap()
264 if (SPIRVMap<KT, VT>::rfind(I.first, &V)) in rmap()