Searched defs:my_type (Results 1 – 6 of 6) sorted by relevance
32 struct my_type struct39 explicit my_type(unsigned int n = 0) : value(n) {} in my_type() argument40 my_type(my_type const& that) : value(that.value) {} in my_type() function41 my_type(BOOST_RV_REF(my_type) that) : value(that.value) { that.value = 0xbaadbaad; } in my_type() function42 ~my_type() { value = 0xdeaddead; } in ~my_type() argument44 my_type& operator= (BOOST_COPY_ASSIGN_REF(my_type) that) { value = that.value; return *this; } in operator =() argument45 …my_type& operator= (BOOST_RV_REF(my_type) that) { value = that.value; that.value = 0xbaadbaad; ret… in operator =() argument
77 struct my_type {}; struct
69 struct my_type {}; struct
60 typedef indirect_streambuf<T, Tr, Alloc, Mode> my_type; typedef in boost::iostreams::detail::indirect_streambuf
129 typedef chain_base<Self, Ch, Tr, Alloc, Mode> my_type; typedef in boost::iostreams::detail::chain_base
3688 GVariantType *my_type; in g_variant_builder_end() local