OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CopyCounter
(Results
1 - 3
of
3
) sorted by null
/external/skia/tests/
HashTest.cpp
111
class
CopyCounter
{
113
CopyCounter
() : fID(0), fCounter(nullptr) {}
115
CopyCounter
(uint32_t id, uint32_t* counter) : fID(id), fCounter(counter) {}
117
CopyCounter
(const
CopyCounter
& other)
124
void operator=(const
CopyCounter
& other) {
130
CopyCounter
(
CopyCounter
&& other) { *this = std::move(other); }
131
void operator=(
CopyCounter
&& other) {
137
bool operator==(const
CopyCounter
& other) const
[
all
...]
/external/clang/test/SemaCXX/
new-delete.cpp
457
struct
CopyCounter
459
CopyCounter
();
460
CopyCounter
(const
CopyCounter
&);
465
CopyCounter
* f = new
CopyCounter
[10](
CopyCounter
()); // expected-error {{cannot have initialization arguments}}
/external/libchrome/base/
bind_unittest.cc
195
class
CopyCounter
{
197
CopyCounter
(int* copies, int* assigns)
199
CopyCounter
(const
CopyCounter
& other) : counter_(other.counter_) {}
200
CopyCounter
& operator=(const
CopyCounter
& other) {
205
explicit
CopyCounter
(const DerivedCopyMoveCounter& other) : counter_(other) {}
902
CopyCounter
counter(&copies, &assigns);
903
Bind(&VoidPolymorphic<
CopyCounter
>::Run, counter);
909
Bind(&VoidPolymorphic<
CopyCounter
>::Run, CopyCounter(&copies, &assigns))
[
all
...]
Completed in 184 milliseconds