Home
last modified time | relevance | path

Searched refs:bound_args (Results 1 – 22 of 22) sorted by relevance

/third_party/boost/boost/lockfree/detail/
Dparameter.hpp27 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/
Dpolicies.hpp80 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,
Dpairing_heap.hpp139 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;
Dskew_heap.hpp273 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;
Dd_ary_heap.hpp468 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;
Dfibonacci_heap.hpp135 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;
Dbinomial_heap.hpp129 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/
Ddo_the_bind.cpp115 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/
Dqueue.hpp103 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;
Dstack.hpp76 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;
Dspsc_queue.hpp666 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/
Dutils.py41 bound_args = inspect.signature(fn).bind(self, *args, **kwargs)
42 arguments = bound_args.arguments
/third_party/boost/libs/format/test/
Dformat_test3.cpp98 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/
Dcef_bind_internal.h798 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/
Dprimitive.py606 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/
Dbind.hpp54 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/
Dbind.hpp54 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/
Dformat_class.hpp99 int bound_args() const;
Dformat_implementation.hpp176 bound_args() const { in bound_args() function in boost::basic_format
/third_party/mindspore/mindspore/nn/optim/
Doptimizer.py43 bound_args = inspect.signature(fn).bind(self, *args, **kwargs)
44 bound_args.apply_defaults()
45 arguments = bound_args.arguments
/third_party/mindspore/mindspore/nn/
Dcell.py395 bound_args = inspect.signature(self.construct).bind(*inputs, **kwargs)
396 inputs = bound_args.args
397 kwargs = bound_args.kwargs
/third_party/python/Lib/unittest/
Dmock.py411 bound_args = _MOCK_SIG.bind_partial(cls, *args, **kw).arguments
412 spec_arg = bound_args.get('spec_set', bound_args.get('spec'))