Lines Matching refs:BlockSet
42 using BlockSet = std::unordered_set<const HBasicBlock*>; typedef
101 template <typename BLKS, typename = std::enable_if_t<!std::is_same_v<BlockSet, BLKS>>>
102 bool operator==(const BlockSet& bs, const BLKS& sas) { in operator ==()
106 template <typename BLKS, typename = std::enable_if_t<!std::is_same_v<BlockSet, BLKS>>>
107 bool operator==(const BLKS& sas, const BlockSet& bs) { in operator ==()
110 template <typename BLKS, typename = std::enable_if_t<!std::is_same_v<BlockSet, BLKS>>>
111 bool operator!=(const BlockSet& bs, const BLKS& sas) { in operator !=()
114 template <typename BLKS, typename = std::enable_if_t<!std::is_same_v<BlockSet, BLKS>>>
115 bool operator!=(const BLKS& sas, const BlockSet& bs) { in operator !=()
731 BlockSet exclude_a({ blks.Get("a") }); in TEST_F()
732 BlockSet exclude_c({ blks.Get("c_begin_1"), in TEST_F()
746 BlockSet({ blks.Get("c_begin_1"), blks.Get("c_begin_2") }) == it.EntryBlocks() && in TEST_F()
747 BlockSet({ blks.Get("c_end_1"), blks.Get("c_end_2") }) == it.ExitBlocks(); in TEST_F()