/third_party/boost/boost/lockfree/detail/ |
D | parameter.hpp | 27 template <typename bound_args, typename tag_type> 30 typedef typename parameter::binding<bound_args, tag_type, mpl::void_>::type type; 35 template <typename bound_args> 38 static const bool has_capacity = has_arg<bound_args, tag::capacity>::value; 41 typename has_arg<bound_args, tag::capacity>::type, 49 template <typename bound_args, typename T> 52 static const bool has_allocator = has_arg<bound_args, tag::allocator>::value; 55 typename has_arg<bound_args, tag::allocator>::type, 62 template <typename bound_args, bool default_ = false> 65 static const bool has_fixed_sized = has_arg<bound_args, tag::fixed_sized>::value; [all …]
|
/third_party/boost/boost/heap/ |
D | policies.hpp | 80 template <typename bound_args, typename tag_type> 83 typedef typename boost::parameter::binding<bound_args, tag_type, void>::type type; 87 template <typename bound_args> 90 static const bool has_stable = has_arg<bound_args, tag::stable>::value; 93 typename has_arg<bound_args, tag::stable>::type, 100 template <typename bound_args> 103 static const bool has_mutable = has_arg<bound_args, tag::mutable_>::value; 106 typename has_arg<bound_args, tag::mutable_>::type,
|
D | pairing_heap.hpp | 139 typedef typename detail::pairing_heap_signature::bind<A0, A1, A2, A3, A4>::type bound_args; typedef in boost::heap::pairing_heap 140 typedef detail::make_pairing_heap_base<T, bound_args> base_maker; 231 static const bool is_stable = detail::extract_stable<bound_args>::value;
|
D | skew_heap.hpp | 273 typedef typename detail::skew_heap_signature::bind<A0, A1, A2, A3, A4, A5, A6>::type bound_args; typedef in boost::heap::skew_heap 274 typedef detail::make_skew_heap_base<T, bound_args> base_maker; 362 static const bool is_stable = detail::extract_stable<bound_args>::value; 364 static const bool is_mutable = detail::extract_mutable<bound_args>::value;
|
D | d_ary_heap.hpp | 468 typedef typename detail::d_ary_heap_signature::bind<A0, A1, A2, A3, A4, A5>::type bound_args; typedef in boost::heap::d_ary_heap 469 typedef typename detail::select_dary_heap<T, bound_args>::type super_t; 475 static const bool is_mutable = detail::extract_mutable<bound_args>::value;
|
D | fibonacci_heap.hpp | 135 typedef typename detail::fibonacci_heap_signature::bind<A0, A1, A2, A3, A4>::type bound_args; typedef in boost::heap::fibonacci_heap 136 typedef detail::make_fibonacci_heap_base<T, bound_args> base_maker; 219 static const bool is_stable = detail::extract_stable<bound_args>::value;
|
D | binomial_heap.hpp | 129 typedef typename detail::binomial_heap_signature::bind<A0, A1, A2, A3>::type bound_args; typedef in boost::heap::binomial_heap 130 typedef detail::make_binomial_heap_base<T, bound_args> base_maker; 145 static const bool is_stable = detail::extract_stable<bound_args>::value;
|
/third_party/boost/libs/fusion/example/cookbook/ |
D | do_the_bind.cpp | 115 typedef typename traits::deduce_sequence<BindArgs>::type bound_args; typedef in impl::fused_bound_function 117 bound_args fsq_bind_args; 129 : result_of::invoke< typename result_of::front<bound_args>::type, 131 typename result_of::pop_front<bound_args>::type,
|
/third_party/boost/boost/lockfree/ |
D | queue.hpp | 103 typedef typename detail::queue_signature::bind<A0, A1, A2>::type bound_args; typedef in boost::lockfree::queue 105 typedef typename detail::queue_signature::bind<Options...>::type bound_args; typedef in boost::lockfree::queue 108 static const bool has_capacity = detail::extract_capacity<bound_args>::has_capacity; 109 …static const size_t capacity = detail::extract_capacity<bound_args>::capacity + 1; // the queue us… 110 static const bool fixed_sized = detail::extract_fixed_sized<bound_args>::value; 139 typedef typename detail::extract_allocator<bound_args, node>::type node_allocator;
|
D | stack.hpp | 76 typedef typename detail::stack_signature::bind<A0, A1, A2>::type bound_args; typedef in boost::lockfree::stack 78 typedef typename detail::stack_signature::bind<Options...>::type bound_args; typedef in boost::lockfree::stack 81 static const bool has_capacity = detail::extract_capacity<bound_args>::has_capacity; 82 static const size_t capacity = detail::extract_capacity<bound_args>::capacity; 83 static const bool fixed_sized = detail::extract_fixed_sized<bound_args>::value; 98 typedef typename detail::extract_allocator<bound_args, node>::type node_allocator;
|
D | spsc_queue.hpp | 666 typedef typename ringbuffer_signature::bind<A0, A1>::type bound_args; typedef 668 typedef typename ringbuffer_signature::bind<Options...>::type bound_args; 671 typedef extract_capacity<bound_args> extract_capacity_t; 676 typedef extract_allocator<bound_args, T> extract_allocator_t;
|
/third_party/mindspore/mindspore/_extends/ |
D | utils.py | 41 bound_args = inspect.signature(fn).bind(self, *args, **kwargs) 42 arguments = bound_args.arguments
|
/third_party/boost/libs/format/test/ |
D | format_test3.cpp | 98 BOOST_TEST_EQ(bf.bound_args(), 1); in main() 105 BOOST_TEST_EQ(bf.bound_args(), 0); in main()
|
/third_party/cef/include/base/internal/ |
D | cef_bind_internal.h | 798 const BoundArgsTuple& bound_args, 803 functor, std::get<indices>(bound_args)...); 806 functor, std::get<indices>(bound_args)...); 886 ForwardBoundArgs&&... bound_args) { 889 BanUnconstructedRefCountedReceiver<ForwardFunctor>(bound_args...); 896 std::forward<ForwardBoundArgs>(bound_args)...); 910 ForwardBoundArgs&&... bound_args) 915 bound_args_(std::forward<ForwardBoundArgs>(bound_args)...) { 931 ForwardBoundArgs&&... bound_args) 934 bound_args_(std::forward<ForwardBoundArgs>(bound_args)...) {
|
/third_party/mindspore/mindspore/ops/ |
D | primitive.py | 606 bound_args = inspect.signature(fn).bind(self, *args, **kwargs) 607 bound_args.apply_defaults() 608 arguments = bound_args.arguments
|
/third_party/boost/boost/compute/functional/ |
D | bind.hpp | 54 invoked_bound_function(Function f, BoundArgs bound_args, Args args) in invoked_bound_function() 56 m_bound_args(bound_args), in invoked_bound_function()
|
/third_party/boost/libs/compute/include/boost/compute/functional/ |
D | bind.hpp | 54 invoked_bound_function(Function f, BoundArgs bound_args, Args args) in invoked_bound_function() 56 m_bound_args(bound_args), in invoked_bound_function()
|
/third_party/boost/boost/format/ |
D | format_class.hpp | 99 int bound_args() const;
|
D | format_implementation.hpp | 176 bound_args() const { in bound_args() function in boost::basic_format
|
/third_party/mindspore/mindspore/nn/optim/ |
D | optimizer.py | 43 bound_args = inspect.signature(fn).bind(self, *args, **kwargs) 44 bound_args.apply_defaults() 45 arguments = bound_args.arguments
|
/third_party/mindspore/mindspore/nn/ |
D | cell.py | 395 bound_args = inspect.signature(self.construct).bind(*inputs, **kwargs) 396 inputs = bound_args.args 397 kwargs = bound_args.kwargs
|
/third_party/python/Lib/unittest/ |
D | mock.py | 411 bound_args = _MOCK_SIG.bind_partial(cls, *args, **kw).arguments 412 spec_arg = bound_args.get('spec_set', bound_args.get('spec'))
|