Lines Matching refs:super
41 using super = hidl_vec<uint8_t>; variable
45 HidlBuf(const super& other) : super(other) {} in HidlBuf()
46 HidlBuf(super&& other) : super(std::move(other)) { other = {}; } in HidlBuf()
47 HidlBuf(const HidlBuf& other) : super(other) {} in HidlBuf()
48 HidlBuf(HidlBuf&& other) : super(std::move(other)) { other = HidlBuf(); } in HidlBuf()
51 HidlBuf& operator=(const super& other) {
52 super::operator=(other);
56 HidlBuf& operator=(super&& other) {
57 super::operator=(std::move(other));
63 super::operator=(other);
68 super::operator=(std::move(other));
69 other.super::operator=({});