Searched defs:DerivedCounter (Results 1 - 1 of 1) sorted by last modified time

/frameworks/av/media/libstagefright/foundation/tests/
H A DAData_test.cpp49 struct DerivedCounter : public EventCounter { struct in namespace:android
50 DerivedCounter(int *counter, int magic=1234) : EventCounter(counter, magic) { } function in struct:android::DerivedCounter
129 static_assert(is_copy_assignable<weak_ptr<DerivedCounter>>::value, "");
130 static_assert(is_copy_constructible<weak_ptr<DerivedCounter>>::value, "");
131 static_assert(is_default_constructible<weak_ptr<DerivedCounter>>::value, "");
133 static_assert(!is_copy_assignable<unique_ptr<DerivedCounter>>::value, "");
134 static_assert(!is_copy_constructible<unique_ptr<DerivedCounter>>::value, "");
135 static_assert(is_default_constructible<unique_ptr<DerivedCounter>>::value, "");
145 static_assert(is_convertible<shared_ptr<DerivedCounter>, shared_ptr<EventCounter>>::value, "");
146 static_assert(!is_convertible<shared_ptr<EventCounter>, shared_ptr<DerivedCounter>>
[all...]

Completed in 76 milliseconds