Home
last modified time | relevance | path

Searched defs:my_type (Results 1 – 6 of 6) sorted by relevance

/third_party/boost/libs/log/test/run/
Dutil_manip_add_value.cpp32 struct my_type struct
39 explicit my_type(unsigned int n = 0) : value(n) {} in my_type() argument
40 my_type(my_type const& that) : value(that.value) {} in my_type() function
41 my_type(BOOST_RV_REF(my_type) that) : value(that.value) { that.value = 0xbaadbaad; } in my_type() function
42 ~my_type() { value = 0xdeaddead; } in ~my_type() argument
44 my_type& operator= (BOOST_COPY_ASSIGN_REF(my_type) that) { value = that.value; return *this; } in operator =() argument
45my_type& operator= (BOOST_RV_REF(my_type) that) { value = that.value; that.value = 0xbaadbaad; ret… in operator =() argument
/third_party/boost/libs/spirit/test/karma/
Dauto.hpp77 struct my_type {}; struct
/third_party/boost/libs/spirit/test/qi/
Dauto.cpp69 struct my_type {}; struct
/third_party/boost/boost/iostreams/detail/streambuf/
Dindirect_streambuf.hpp60 typedef indirect_streambuf<T, Tr, Alloc, Mode> my_type; typedef in boost::iostreams::detail::indirect_streambuf
/third_party/boost/boost/iostreams/
Dchain.hpp129 typedef chain_base<Self, Ch, Tr, Alloc, Mode> my_type; typedef in boost::iostreams::detail::chain_base
/third_party/glib/glib/
Dgvariant.c3688 GVariantType *my_type; in g_variant_builder_end() local