Home
last modified time | relevance | path

Searched defs:copy_counter (Results 1 – 3 of 3) sorted by relevance

/aosp_15_r20/external/sdv/vsomeip/third_party/boost/core/test/
Dref_test.cpp51 struct copy_counter { struct
52 static int count_;
53 copy_counter(copy_counter const& /*other*/) { in copy_counter() function
56 copy_counter() {} in copy_counter() function
57 static void reset() { count_ = 0; } in reset()
58 static int count() { return copy_counter::count_; } in count()
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/any/test/
Dany_test.cpp70 struct copy_counter struct
75 copy_counter() {} in copy_counter() function
76 copy_counter(const copy_counter&) { ++count; } in copy_counter() argument
77 copy_counter& operator=(const copy_counter&) { ++count; return *this; } in operator =()
78 static int get_count() { return count; } in get_count()
82 static int count;
/aosp_15_r20/external/tensorflow/tensorflow/core/framework/
H A Dvariant_test.cc226 explicit MoveAndCopyCounter(int* move_counter, int* copy_counter) in MoveAndCopyCounter()