Lines Matching refs:Uncopyable
3955 // An uncopyable class.
3956 class Uncopyable {
3958 explicit Uncopyable(int value) : value_(value) {}
3961 bool operator==(const Uncopyable& rhs) const {
3967 Uncopyable(const Uncopyable&); // NOLINT
3972 ::std::ostream& operator<<(::std::ostream& os, const Uncopyable& value) {
3977 bool IsPositiveUncopyable(const Uncopyable& x) {
3983 Uncopyable y(-1);
3988 Uncopyable x(5);
3989 Uncopyable y(-1);
3993 // Tests that uncopyable objects can be used in assertions.
3995 Uncopyable x(5);
4004 // Tests that uncopyable objects can be used in expects.
4006 Uncopyable x(5);
4008 Uncopyable y(-1);