Home | History | Annotate | Download | only in base

Lines Matching refs:CopyCounter

96 class CopyCounter {
98 CopyCounter(int* copies, int* assigns)
102 CopyCounter(const CopyCounter& other)
109 explicit CopyCounter(const DerivedCopyCounter& other)
115 const CopyCounter& operator=(const CopyCounter& rhs) {
186 int GetCopies(const CopyCounter& counter) {
662 CopyCounter counter(&copies, &assigns);
768 CopyCounter counter(&copies, &assigns);
771 Bind(&VoidPolymorphic1<CopyCounter>, counter);
777 Callback<void(CopyCounter)> forward_cb =
778 Bind(&VoidPolymorphic1<CopyCounter>);
786 Callback<void(CopyCounter)> coerce_cb =
787 Bind(&VoidPolymorphic1<CopyCounter>);
788 coerce_cb.Run(CopyCounter(dervied));