Home | History | Annotate | Download | only in test

Lines Matching refs:FromType

519 class FromType {
521 explicit FromType(bool* is_converted) : converted_(is_converted) {}
527 GTEST_DISALLOW_ASSIGN_(FromType);
533 ToType(const FromType& x) { *x.converted() = true; } // NOLINT
538 FromType x(&converted);