Lines Matching refs:const_converted
133 ConstAndNonConstCastable(bool* converted, bool* const_converted)
134 : converted_(converted), const_converted_(const_converted) {}
151 bool const_converted = false;
152 ConstAndNonConstCastable castable(&converted, &const_converted);
155 EXPECT_FALSE(const_converted);
158 const_converted = false;
159 const ConstAndNonConstCastable const_castable(&converted, &const_converted);
162 EXPECT_TRUE(const_converted);