Home
last modified time | relevance | path

Searched defs:CopyCounter (Results 1 – 5 of 5) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/unittests/ADT/
DFunctionExtrasTest.cpp133 struct CopyCounter { in TEST() struct
134 int &CopyCount; in TEST()
136 CopyCounter(int &CopyCount) : CopyCount(CopyCount) {} in TEST() function
137 CopyCounter(const CopyCounter &Arg) : CopyCount(Arg.CopyCount) { in TEST() function
142 unique_function<void(CopyCounter)> ByValF = [](CopyCounter) {}; in TEST() argument
156 unique_function<void(const CopyCounter &)> ByRefF = [](const CopyCounter &) { in TEST()
/external/skia/tests/
DHashTest.cpp111 class CopyCounter { class
113 CopyCounter() : fID(0), fCounter(nullptr) {} in CopyCounter() function in __anon970392c80311::CopyCounter
115 CopyCounter(uint32_t id, uint32_t* counter) : fID(id), fCounter(counter) {} in CopyCounter() function in __anon970392c80311::CopyCounter
117 CopyCounter(const CopyCounter& other) in CopyCounter() function in __anon970392c80311::CopyCounter
130 CopyCounter(CopyCounter&& other) { *this = std::move(other); } in CopyCounter() function in __anon970392c80311::CopyCounter
/external/skqp/tests/
DHashTest.cpp111 class CopyCounter { class
113 CopyCounter() : fID(0), fCounter(nullptr) {} in CopyCounter() function in __anon15b71e7f0311::CopyCounter
115 CopyCounter(uint32_t id, uint32_t* counter) : fID(id), fCounter(counter) {} in CopyCounter() function in __anon15b71e7f0311::CopyCounter
117 CopyCounter(const CopyCounter& other) in CopyCounter() function in __anon15b71e7f0311::CopyCounter
130 CopyCounter(CopyCounter&& other) { *this = std::move(other); } in CopyCounter() function in __anon15b71e7f0311::CopyCounter
/external/libchrome/base/
Dbind_unittest.cc202 class CopyCounter { class
204 CopyCounter(int* copies, int* assigns) in CopyCounter() function in base::__anon398078b80111::CopyCounter
209 explicit CopyCounter(const DerivedCopyMoveCounter& other) : counter_(other) {} in CopyCounter() function in base::__anon398078b80111::CopyCounter
/external/clang/test/SemaCXX/
Dnew-delete.cpp457 struct CopyCounter struct