OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:CopyCounter
(Results
1 - 2
of
2
) sorted by null
/external/astl/tests/
common.h
61
struct
CopyCounter
{
64
CopyCounter
() { }
65
CopyCounter
& operator=(const
CopyCounter
& cc) {return *this; }
66
CopyCounter
(const
CopyCounter
& nc) {++mCount;}
89
size_t
CopyCounter
::mCount;
/external/chromium/base/
bind_unittest.cc
97
class
CopyCounter
{
99
CopyCounter
(int* copies, int* assigns)
103
CopyCounter
(const
CopyCounter
& other)
110
CopyCounter
(const DerivedCopyCounter& other)
116
const
CopyCounter
& operator=(const
CopyCounter
& rhs) {
166
int GetCopies(const
CopyCounter
& counter) {
491
CopyCounter
counter(&copies, &assigns);
508
CopyCounter
counter(&copies, &assigns)
[
all
...]
Completed in 384 milliseconds