Searched defs:InstrumentType (Results 1 – 1 of 1) sorted by relevance
48 class InstrumentType { class51 InstrumentType(const T& value) : value_(value) { constructor_count_++; } in InstrumentType() function in __anon1fde347f0111::InstrumentType53 InstrumentType(T&& value) : value_(std::move(value)) { constructor_count_++; } in InstrumentType() function in __anon1fde347f0111::InstrumentType54 InstrumentType(const InstrumentType& other) : value_(other.value_) { in InstrumentType() function in __anon1fde347f0111::InstrumentType57 InstrumentType(InstrumentType&& other) : value_(std::move(other.value_)) { in InstrumentType() function in __anon1fde347f0111::InstrumentType61 InstrumentType(const TestType<T>& other) : value_(other.get()) { in InstrumentType() function in __anon1fde347f0111::InstrumentType65 InstrumentType(TestType<T>&& other) : value_(other.take()) { in InstrumentType() function in __anon1fde347f0111::InstrumentType