/third_party/boost/boost/fiber/future/ |
D | future.hpp | 113 typedef detail::future_base< R > base_type; typedef in boost::fibers::future 120 explicit future( typename base_type::ptr_type const& p) noexcept : in future() 121 base_type{ p } { in future() 131 base_type{ std::move( other) } { in future() 136 base_type::operator=( std::move( other) ); in operator =() 144 if ( BOOST_UNLIKELY( ! base_type::valid() ) ) { in get() 147 typename base_type::ptr_type tmp{}; in get() 148 tmp.swap( base_type::state_); in get() 152 using base_type::valid; 153 using base_type::get_exception_ptr; [all …]
|
D | promise.hpp | 107 typedef detail::promise_base< R > base_type; typedef in boost::fibers::promise 114 base_type{ std::allocator_arg, alloc } { in promise() 124 if ( BOOST_UNLIKELY( ! base_type::future_) ) { in set_value() 127 base_type::future_->set_value( value); in set_value() 131 if ( BOOST_UNLIKELY( ! base_type::future_) ) { in set_value() 134 base_type::future_->set_value( std::move( value) ); in set_value() 138 base_type::swap( other); in swap() 141 using base_type::get_future; 142 using base_type::set_exception; 148 typedef detail::promise_base< R & > base_type; typedef in boost::fibers::promise [all …]
|
/third_party/boost/boost/ptr_container/ |
D | ptr_unordered_set.hpp | 52 base_type; typedef in boost::ptr_unordered_set 57 typedef typename base_type::size_type size_type; 60 using base_type::lower_bound; 61 using base_type::upper_bound; 62 using base_type::rbegin; 63 using base_type::rend; 64 using base_type::crbegin; 65 using base_type::crend; 66 using base_type::key_comp; 67 using base_type::value_comp; [all …]
|
D | ptr_unordered_map.hpp | 49 base_type; typedef in boost::ptr_unordered_map 54 typedef typename base_type::size_type size_type; 57 using base_type::lower_bound; 58 using base_type::upper_bound; 59 using base_type::rbegin; 60 using base_type::rend; 61 using base_type::crbegin; 62 using base_type::crend; 63 using base_type::key_comp; 64 using base_type::value_comp; [all …]
|
D | ptr_set_adapter.hpp | 134 base_type; typedef in boost::ptr_container_detail::ptr_set_adapter_base 136 typedef BOOST_DEDUCED_TYPENAME base_type::iterator 138 typedef BOOST_DEDUCED_TYPENAME base_type::const_iterator 141 typedef BOOST_DEDUCED_TYPENAME base_type::size_type 151 : base_type( n, tag ) in ptr_set_adapter_base() 157 : base_type( comp, a ) in ptr_set_adapter_base() 164 : base_type( hash, pred, a ) in ptr_set_adapter_base() 171 : base_type( first, last, comp, a ) in ptr_set_adapter_base() 179 : base_type( first, last, hash, pred, a ) in ptr_set_adapter_base() 184 : base_type( r ) in ptr_set_adapter_base() [all …]
|
D | ptr_map_adapter.hpp | 139 base_type; typedef in boost::ptr_container_detail::ptr_map_adapter_base 146 typedef BOOST_DEDUCED_TYPENAME base_type::allocator_type 148 typedef BOOST_DEDUCED_TYPENAME base_type::iterator 150 typedef BOOST_DEDUCED_TYPENAME base_type::const_iterator 152 typedef BOOST_DEDUCED_TYPENAME base_type::size_type 154 typedef BOOST_DEDUCED_TYPENAME base_type::key_type 156 typedef BOOST_DEDUCED_TYPENAME base_type::auto_type 158 typedef BOOST_DEDUCED_TYPENAME base_type::value_type 160 typedef BOOST_DEDUCED_TYPENAME base_type::reference 162 typedef BOOST_DEDUCED_TYPENAME base_type::const_reference [all …]
|
/third_party/boost/boost/thread/ |
D | exceptions.hpp | 40 typedef system::system_error base_type; typedef in boost::thread_exception 43 : base_type(0,system::generic_category()) in thread_exception() 47 : base_type(sys_error_code, system::generic_category()) in thread_exception() 51 : base_type(system::error_code(ev, system::generic_category()), what_arg) in thread_exception() 55 : base_type(system::error_code(ev, system::generic_category()), what_arg) in thread_exception() 74 typedef system::system_error base_type; typedef in boost::condition_error 77 : base_type(system::error_code(0, system::generic_category()), "Condition error") in condition_error() 80 : base_type(system::error_code(ev, system::generic_category()), "Condition error") in condition_error() 84 : base_type(system::error_code(ev, system::generic_category()), what_arg) in condition_error() 88 : base_type(system::error_code(ev, system::generic_category()), what_arg) in condition_error() [all …]
|
/third_party/boost/boost/safe_numerics/ |
D | native.hpp | 25 typename base_type<T>::type() 26 + typename base_type<U>::type() 32 typename base_type<T>::type() 33 - typename base_type<U>::type() 39 typename base_type<T>::type() 40 * typename base_type<U>::type() 46 typename base_type<T>::type() 47 / typename base_type<U>::type() 53 typename base_type<T>::type() 54 % typename base_type<U>::type() [all …]
|
/third_party/boost/boost/atomic/detail/ |
D | extra_ops_msvc_x86.hpp | 40 typedef extra_operations_generic< Base, 1u, Signed > base_type; typedef 41 typedef typename base_type::storage_type storage_type; 45 base_type::fence_before(order); in fetch_negate() 59 base_type::fence_after(order); in fetch_negate() 65 base_type::fence_before(order); in negate() 79 base_type::fence_after(order); in negate() 85 base_type::fence_before(order); in negate_and_test() 100 base_type::fence_after(order); in negate_and_test() 106 base_type::fence_before(order); in opaque_negate() 118 base_type::fence_after(order); in opaque_negate() [all …]
|
D | extra_ops_emulated.hpp | 38 typedef Base base_type; typedef 39 typedef typename base_type::storage_type storage_type; 40 typedef typename base_type::scoped_lock scoped_lock; 44 …BOOST_STATIC_ASSERT_MSG(!base_type::is_interprocess, "Boost.Atomic: operation invoked on a non-loc… in fetch_negate() 54 …BOOST_STATIC_ASSERT_MSG(!base_type::is_interprocess, "Boost.Atomic: operation invoked on a non-loc… in negate() 64 …BOOST_STATIC_ASSERT_MSG(!base_type::is_interprocess, "Boost.Atomic: operation invoked on a non-loc… in add() 75 …BOOST_STATIC_ASSERT_MSG(!base_type::is_interprocess, "Boost.Atomic: operation invoked on a non-loc… in sub() 86 …BOOST_STATIC_ASSERT_MSG(!base_type::is_interprocess, "Boost.Atomic: operation invoked on a non-loc… in bitwise_and() 97 …BOOST_STATIC_ASSERT_MSG(!base_type::is_interprocess, "Boost.Atomic: operation invoked on a non-loc… in bitwise_or() 108 …BOOST_STATIC_ASSERT_MSG(!base_type::is_interprocess, "Boost.Atomic: operation invoked on a non-loc… in bitwise_xor() [all …]
|
/third_party/boost/boost/log/sources/ |
D | basic_logger.hpp | 328 >::type base_type; typedef in boost::sources::basic_composite_logger 337 typedef typename base_type::threading_model threading_model; 340 typedef typename base_type::swap_lock swap_lock; 353 base_type in basic_composite_logger() 356 static_cast< base_type const& >(that) in basic_composite_logger() 363 …EF(logger_base) that) BOOST_NOEXCEPT_IF(boost::is_nothrow_move_constructible< base_type >::value) : in BOOST_NOEXCEPT_IF() 364 base_type(boost::move(static_cast< base_type& >(that))) in BOOST_NOEXCEPT_IF() 371 explicit basic_composite_logger(ArgsT const& args) : base_type(args) in basic_composite_logger() 387 typename base_type::add_attribute_lock lock(base_type::get_threading_model()); in add_attribute() 388 return base_type::add_attribute_unlocked(name, attr); in add_attribute() [all …]
|
D | exception_handler_feature.hpp | 52 typedef BaseT base_type; typedef in boost::sources::basic_exception_handler_logger 58 typedef typename base_type::threading_model threading_model; 60 typedef typename base_type::final_type final_type; 67 typename base_type::open_record_lock, 72 typename base_type::push_record_lock, 79 typename base_type::swap_lock, 95 basic_exception_handler_logger() : base_type() in basic_exception_handler_logger() 102 base_type(static_cast< base_type const& >(that)), in basic_exception_handler_logger() 109 …r_logger) that) BOOST_NOEXCEPT_IF(boost::is_nothrow_move_constructible< base_type >::value && boos… in BOOST_NOEXCEPT_IF() 110 base_type(boost::move(static_cast< base_type& >(that))), in BOOST_NOEXCEPT_IF() [all …]
|
D | channel_feature.hpp | 49 typedef BaseT base_type; typedef in boost::sources::basic_channel_logger 55 typedef typename base_type::char_type char_type; 57 typedef typename base_type::final_type final_type; 59 typedef typename base_type::threading_model threading_model; 68 typename base_type::open_record_lock, 78 typename base_type::swap_lock, 102 basic_channel_logger() : base_type(), m_ChannelAttr(channel_type()) in basic_channel_logger() 104 …base_type::add_attribute_unlocked(boost::log::aux::default_attribute_names::channel(), m_ChannelAt… in basic_channel_logger() 110 base_type(static_cast< base_type const& >(that)), in basic_channel_logger() 114 … base_type::attributes()[boost::log::aux::default_attribute_names::channel()] = m_ChannelAttr; in basic_channel_logger() [all …]
|
D | record_ostream.hpp | 88 typedef basic_formatting_ostream< CharT > base_type; typedef in boost::basic_record_ostream 98 typedef typename base_type::traits_type traits_type; 151 return (!m_record || base_type::fail()); 195 basic_record_ostream& operator<< (typename base_type::ios_base_manip manip) in operator <<() 197 static_cast< base_type& >(*this) << manip; in operator <<() 200 basic_record_ostream& operator<< (typename base_type::basic_ios_manip manip) in operator <<() 202 static_cast< base_type& >(*this) << manip; in operator <<() 205 basic_record_ostream& operator<< (typename base_type::stream_manip manip) in operator <<() 207 static_cast< base_type& >(*this) << manip; in operator <<() 213 static_cast< base_type& >(*this) << c; in operator <<() [all …]
|
D | severity_feature.hpp | 151 typedef BaseT base_type; typedef in boost::sources::basic_severity_logger 157 typedef typename base_type::char_type char_type; 159 typedef typename base_type::final_type final_type; 161 typedef typename base_type::threading_model threading_model; 171 typename base_type::open_record_lock, 178 typename base_type::swap_lock, 198 base_type(), in basic_severity_logger() 201 …base_type::add_attribute_unlocked(boost::log::aux::default_attribute_names::severity(), m_Severity… in basic_severity_logger() 207 base_type(static_cast< base_type const& >(that)), in basic_severity_logger() 212 … base_type::attributes()[boost::log::aux::default_attribute_names::severity()] = m_SeverityAttr; in basic_severity_logger() [all …]
|
/third_party/mesa3d/src/compiler/ |
D | glsl_types.h | 165 glsl_base_type_get_bit_size(const enum glsl_base_type base_type) in glsl_base_type_get_bit_size() argument 167 switch (base_type) { in glsl_base_type_get_bit_size() 295 glsl_base_type base_type:8; member 448 static const glsl_type *get_instance(unsigned base_type, unsigned rows, 720 && (base_type >= GLSL_TYPE_UINT) in is_scalar() 721 && (base_type <= GLSL_TYPE_IMAGE); in is_scalar() 731 && (base_type >= GLSL_TYPE_UINT) in is_vector() 732 && (base_type <= GLSL_TYPE_BOOL); in is_vector() 741 return (matrix_columns > 1) && (base_type == GLSL_TYPE_FLOAT || in is_matrix() 742 base_type == GLSL_TYPE_DOUBLE || in is_matrix() [all …]
|
/third_party/boost/boost/convert/detail/ |
D | range.hpp | 70 typedef range_base<T> base_type; typedef 71 typedef typename base_type::iterator iterator; 72 typedef typename base_type::const_iterator const_iterator; 75 range (T& r) : base_type(r.begin(), r.end()) {} in range() 77 iterator end () { return base_type::end_; } in end() 78 const_iterator end () const { return base_type::end_; } in end() 79 sentry_type sentry () const { return base_type::end_; } in sentry() 80 std::size_t size () const { return base_type::end_ - base_type::begin_; } in size() 81 bool empty () const { return base_type::begin_ == base_type::end_; } in empty() 88 using base_type = range_base<T*>; typedef [all …]
|
/third_party/boost/boost/date_time/gregorian/ |
D | greg_duration.hpp | 29 typedef boost::date_time::date_duration< date_duration_rep > base_type; typedef in boost::gregorian::date_duration 32 typedef base_type::duration_rep duration_rep; 36 date_duration(duration_rep day_count = 0) : base_type(day_count) {} in date_duration() 40 date_duration(date_time::special_values sv) : base_type(sv) {} in date_duration() 44 date_duration(const base_type& other) : base_type(other) in date_duration() 53 return base_type::operator== (rhs); in operator ==() 61 return base_type::operator< (rhs); in operator <() 65 return !(base_type::operator< (rhs) || base_type::operator== (rhs)); in operator >() 69 return (base_type::operator< (rhs) || base_type::operator== (rhs)); in operator <=() 73 return !base_type::operator< (rhs); in operator >=() [all …]
|
/third_party/boost/boost/bind/ |
D | bind.hpp | 227 typedef storage1< A1 > base_type; typedef in boost::_bi::list1 231 explicit list1( A1 a1 ): base_type( a1 ) {} in list1() 233 A1 operator[] (boost::arg<1>) const { return base_type::a1_; } in operator []() 235 A1 operator[] (boost::arg<1> (*) ()) const { return base_type::a1_; } in operator []() 249 return unwrapper<F>::unwrap(f, 0)(a[base_type::a1_]); in operator ()() 254 return unwrapper<F const>::unwrap(f, 0)(a[base_type::a1_]); in operator ()() 259 unwrapper<F>::unwrap(f, 0)(a[base_type::a1_]); in operator ()() 264 unwrapper<F const>::unwrap(f, 0)(a[base_type::a1_]); in operator ()() 269 base_type::accept(v); in accept() 274 return ref_compare(base_type::a1_, rhs.a1_, 0); in operator ==() [all …]
|
/third_party/boost/libs/asio/include/boost/asio/ |
D | any_io_executor.hpp | 77 > base_type; 92 : base_type() 98 : base_type(nullptr_t()) 104 : base_type(static_cast<const base_type&>(e)) 111 : base_type(static_cast<base_type&&>(e)) 134 : base_type(BOOST_ASIO_MOVE_CAST(OtherAnyExecutor)(e)) 156 : base_type(BOOST_ASIO_MOVE_CAST(Executor)(e)) 164 base_type::operator=(static_cast<const base_type&>(e)); 172 base_type::operator=(static_cast<base_type&&>(e)); 180 base_type::operator=(nullptr_t()); [all …]
|
/third_party/boost/boost/asio/ |
D | any_io_executor.hpp | 77 > base_type; 92 : base_type() 98 : base_type(nullptr_t()) 104 : base_type(static_cast<const base_type&>(e)) 111 : base_type(static_cast<base_type&&>(e)) 134 : base_type(BOOST_ASIO_MOVE_CAST(OtherAnyExecutor)(e)) 156 : base_type(BOOST_ASIO_MOVE_CAST(Executor)(e)) 164 base_type::operator=(static_cast<const base_type&>(e)); 172 base_type::operator=(static_cast<base_type&&>(e)); 180 base_type::operator=(nullptr_t()); [all …]
|
/third_party/boost/boost/spirit/home/lex/lexer/lexertl/ |
D | position_token.hpp | 226 base_type; typedef 229 typedef typename base_type::id_type id_type; 239 : base_type(0), state_(boost::lexer::npos) {} in position_token() 242 : base_type(id, boost::lexer::npos), state_(state) {} in position_token() 245 : base_type(id, boost::lexer::npos, unused) in position_token() 250 : base_type(id, boost::lexer::npos, first, last) in position_token() 262 this->base_type::operator=(static_cast<base_type const&>(rhs)); in operator =() 283 typedef position_token<Iterator, lex::omit, HasState, Idtype> base_type; 286 typedef typename base_type::id_type id_type; 287 typedef typename base_type::iterator_type iterator_type; [all …]
|
/third_party/ltp/tools/sparse/sparse-src/ |
D | symbol.c | 113 sym = sym->ctype.base_type; in bitfield_base_size() 115 sym = sym->ctype.base_type; in bitfield_base_size() 160 sym->ctype.base_type->bit_offset = bit_offset; in lay_out_struct() 190 sym = sym->ctype.base_type; in examine_anonymous_member() 218 if (member->ctype.base_type == &autotype_ctype) { in examine_struct_union_type() 220 member->ctype.base_type = &incomplete_ctype; in examine_struct_union_type() 259 struct symbol *base_type; in examine_base_type() local 261 if (sym->ctype.base_type == &autotype_ctype) { in examine_base_type() 268 type = type->ctype.base_type; in examine_base_type() 269 type = type->ctype.base_type; in examine_base_type() [all …]
|
/third_party/boost/boost/fusion/tuple/detail/preprocessed/ |
D | tuple10.hpp | 16 base_type; typedef 18 : base_type() {} in tuple() 20 : base_type(static_cast<base_type const&>(rhs)) {} in tuple() 24 : base_type(rhs) {} in tuple() 28 : base_type(arg0) {} in tuple() 32 : base_type(rhs) {} in tuple() 37 base_type::operator=(rhs); in operator =() 42 : base_type(arg0 , arg1) {} in tuple() 46 : base_type(rhs) {} in tuple() 51 base_type::operator=(rhs); in operator =() [all …]
|
/third_party/boost/libs/statechart/test/ |
D | InnermostDefault.hpp | 23 typedef sc::state< MostDerived, Context > base_type; typedef 24 typedef typename base_type::my_context my_context; 27 InnermostDefault( my_context ctx ) : base_type( ctx ) in InnermostDefault() 49 Default0, typename Context::template orthogonal< 0 > > base_type; typedef 50 typedef typename base_type::my_context my_context; 52 Default0( my_context ctx ) : base_type( ctx ) {} in Default0() 61 Default1, typename Context::template orthogonal< 1 > > base_type; typedef 62 typedef typename base_type::my_context my_context; 64 Default1( my_context ctx ) : base_type( ctx ) {} in Default1() 73 Default2, typename Context::template orthogonal< 2 > > base_type; typedef [all …]
|