Home
last modified time | relevance | path

Searched refs:InstrumentType (Results 1 – 1 of 1) sorted by relevance

/frameworks/native/libs/vr/libpdx/
Dvariant_tests.cpp44 class InstrumentType { class
46 InstrumentType(const T& value) : value_(value) { constructor_count_++; } in InstrumentType() function in __anon1fde347f0111::InstrumentType
47 InstrumentType(T&& value) : value_(std::move(value)) { constructor_count_++; } in InstrumentType() function in __anon1fde347f0111::InstrumentType
48 InstrumentType(const InstrumentType& other) : value_(other.value_) { in InstrumentType() function in __anon1fde347f0111::InstrumentType
51 InstrumentType(InstrumentType&& other) : value_(std::move(other.value_)) { in InstrumentType() function in __anon1fde347f0111::InstrumentType
54 InstrumentType(const TestType<T>& other) : value_(other.get()) { in InstrumentType() function in __anon1fde347f0111::InstrumentType
57 InstrumentType(TestType<T>&& other) : value_(other.take()) { in InstrumentType() function in __anon1fde347f0111::InstrumentType
60 ~InstrumentType() { destructor_count_++; } in ~InstrumentType()
62 InstrumentType& operator=(const InstrumentType& other) { in operator =()
67 InstrumentType& operator=(InstrumentType&& other) { in operator =()
[all …]