Lines Matching defs:TestObject
25 struct TestObject { struct
28 explicit TestObject(ValueType val) in TestObject() argument
33 TestObject(TestObject&& r) in TestObject() function
38 TestObject& operator=(TestObject&& r) { in operator =()
44 ~TestObject() { in ~TestObject()
51 ValueType value() const { return val_; } in value()
52 static size_t live_obj_count() { return live_obj_count_; } in live_obj_count()
53 static void ResetLiveObjCount() { live_obj_count_ = 0; } in ResetLiveObjCount()
55 bool alive_;
56 ValueType val_;
58 static size_t live_obj_count_;
59 static size_t ctor_count_;
60 static size_t dtor_count_;