Lines Matching refs:super
43 using super = hidl_vec<uint8_t>; variable
47 HidlBuf(const super& other) : super(other) {} in HidlBuf()
48 HidlBuf(super&& other) : super(std::move(other)) { other = {}; } in HidlBuf()
49 HidlBuf(const HidlBuf& other) : super(other) {} in HidlBuf()
50 HidlBuf(HidlBuf&& other) : super(std::move(other)) { other = HidlBuf(); } in HidlBuf()
53 HidlBuf& operator=(const super& other) {
54 super::operator=(other);
58 HidlBuf& operator=(super&& other) {
59 super::operator=(std::move(other));
65 super::operator=(other);
70 super::operator=(std::move(other));
71 other.super::operator=({});