Home | History | Annotate | Download | only in test

Lines Matching refs:converted

132   explicit Castable(bool* converted) : converted_(converted) {}
143 bool converted = false;
144 Castable castable(&converted);
146 EXPECT_TRUE(converted);
151 explicit ConstCastable(bool* converted) : converted_(converted) {}
162 bool converted = false;
163 const ConstCastable const_castable(&converted);
165 EXPECT_TRUE(converted);
170 ConstAndNonConstCastable(bool* converted, bool* const_converted)
171 : converted_(converted), const_converted_(const_converted) {}
187 bool converted = false;
189 ConstAndNonConstCastable castable(&converted, &const_converted);
191 EXPECT_TRUE(converted);
194 converted = false;
196 const ConstAndNonConstCastable const_castable(&converted, &const_converted);
198 EXPECT_FALSE(converted);
204 To(bool* converted) { *converted = true; } // NOLINT
208 bool converted = false;
209 To to = ::testing::internal::ImplicitCast_<To>(&converted);
211 EXPECT_TRUE(converted);