/third_party/boost/boost/range/detail/ |
D | any_iterator.hpp | 319 : m_impl(0) {} in any_iterator() 324 , m_impl(other.m_impl in any_iterator() 325 ? other.m_impl->clone(m_buffer) in any_iterator() 335 if (m_impl) in operator =() 336 m_impl->~abstract_base_type(); in operator =() 338 m_impl = 0; in operator =() 339 if (other.m_impl) in operator =() 340 m_impl = other.m_impl->clone(m_buffer); in operator =() 368 : m_impl(other.m_impl in any_iterator() 369 ? other.m_impl->clone_const_ref(m_buffer) in any_iterator() [all …]
|
D | default_constructible_unary_fn.hpp | 32 : m_impl(source) in default_constructible_unary_fn_wrapper() 36 : m_impl(source.m_impl) in default_constructible_unary_fn_wrapper() 41 if (source.m_impl) in operator =() 44 m_impl.emplace(*source.m_impl); in operator =() 48 m_impl.reset(); in operator =() 55 BOOST_ASSERT(m_impl); in operator ()() 56 return (*m_impl)(arg); in operator ()() 61 BOOST_ASSERT(m_impl); in operator ()() 62 return (*m_impl)(arg); in operator ()() 65 boost::optional<F> m_impl; member in boost::range_detail::default_constructible_unary_fn_wrapper
|
/third_party/boost/boost/log/core/ |
D | record.hpp | 56 public_data* m_impl; member in boost::record 60 BOOST_CONSTEXPR explicit record(public_data* impl) BOOST_NOEXCEPT : m_impl(impl) {} in record() 70 BOOST_CONSTEXPR record() BOOST_NOEXCEPT : m_impl(NULL) {} in record() 75 record(BOOST_RV_REF(record) that) BOOST_NOEXCEPT : m_impl(that.m_impl) in record() 77 that.m_impl = NULL; in record() 104 return m_impl->m_attribute_values; in attribute_values() 114 return m_impl->m_attribute_values; in attribute_values() 131 return !m_impl; 142 public_data* p = m_impl; in swap() 143 m_impl = that.m_impl; in swap() [all …]
|
D | record_view.hpp | 98 intrusive_ptr< public_data > m_impl; member in boost::record_view 102 explicit record_view(public_data* impl) BOOST_NOEXCEPT : m_impl(impl, false) {} in record_view() 122 record_view(record_view const& that) BOOST_NOEXCEPT : m_impl(that.m_impl) {} in record_view() 129 m_impl.swap(that.m_impl); in record_view() 142 m_impl = that.m_impl; in operator =() 151 m_impl.swap(that.m_impl); in operator =() 162 return m_impl->m_attribute_values; in attribute_values() 174 return m_impl == that.m_impl; in operator ==() 202 return !m_impl; 213 m_impl.swap(that.m_impl); in swap() [all …]
|
D | core.hpp | 74 implementation* m_impl; member in boost::core
|
/third_party/boost/libs/log/src/ |
D | core.cpp | 193 BOOST_ASSERT(m_impl != NULL); in lock() 195 record_view::private_data* const impl = static_cast< record_view::private_data* >(m_impl); in lock() 209 m_impl = NULL; in lock() 488 m_impl(new implementation()) in core() 495 delete m_impl; in ~core() 496 m_impl = NULL; in ~core() 509 return m_impl->m_enabled.exchange(enabled, boost::memory_order_relaxed); in set_logging_enabled() 511 const bool old_value = m_impl->m_enabled; in set_logging_enabled() 512 m_impl->m_enabled = enabled; in set_logging_enabled() 521 return m_impl->m_enabled.load(boost::memory_order_relaxed); in get_logging_enabled() [all …]
|
/third_party/boost/boost/uuid/ |
D | random_generator.hpp | 104 basic_random_generator() : m_impl(new self_contained_impl()) in basic_random_generator() 107 seed(static_cast< self_contained_impl* >(m_impl)->urng); in basic_random_generator() 112 explicit basic_random_generator(UniformRandomNumberGenerator& gen) : m_impl(new impl(&gen)) in basic_random_generator() 118 explicit basic_random_generator(UniformRandomNumberGenerator* gen) : m_impl(new impl(gen)) in basic_random_generator() 123 …ic_random_generator(BOOST_RV_REF(basic_random_generator) that) BOOST_NOEXCEPT : m_impl(that.m_impl) in basic_random_generator() 125 that.m_impl = 0; in basic_random_generator() 130 delete m_impl; in operator =() 131 m_impl = that.m_impl; in operator =() 132 that.m_impl = 0; in operator =() 138 delete m_impl; in ~basic_random_generator() [all …]
|
/third_party/boost/boost/python/object/ |
D | py_function.hpp | 124 : m_impl(new caller_py_function_impl<Caller>(caller)) in py_function() 129 : m_impl(new signature_py_function_impl<Caller, Sig>(caller)) in py_function() 134 : m_impl(new full_py_function_impl<Caller, Sig>(caller, min_arity, max_arity)) in py_function() 139 : m_impl(rhs.m_impl) in py_function() 141 : m_impl(std::move(rhs.m_impl)) in py_function() 147 return (*m_impl)(args, kw); in operator ()() 152 return m_impl->min_arity(); in min_arity() 157 return m_impl->max_arity(); in max_arity() 162 return m_impl->signature().signature; in signature() 167 return *m_impl->signature().ret; in get_return_type() [all …]
|
/third_party/boost/boost/math/interpolators/ |
D | cardinal_trigonometric.hpp | 20 …m_impl = std::make_shared<interpolators::detail::cardinal_trigonometric_detail<Real>>(v.data(), v.… in cardinal_trigonometric() 25 return m_impl->operator()(t); in operator ()() 30 return m_impl->prime(t); in prime() 35 return m_impl->double_prime(t); in double_prime() 40 return m_impl->period(); in period() 45 return m_impl->integrate(); in integrate() 50 return m_impl->squared_l2(); in squared_l2() 54 std::shared_ptr<interpolators::detail::cardinal_trigonometric_detail<Real>> m_impl; member in boost::math::interpolators::cardinal_trigonometric
|
D | whittaker_shannon.hpp | 19 …: m_impl(std::make_shared<detail::whittaker_shannon_detail<RandomAccessContainer>>(std::move(y), t… in whittaker_shannon() 24 return m_impl->operator()(t); in operator ()() 29 return m_impl->prime(t); in prime() 34 return m_impl->operator[](i); in operator []() 39 return m_impl->return_data(); in return_data() 44 std::shared_ptr<detail::whittaker_shannon_detail<RandomAccessContainer>> m_impl; member in boost::math::interpolators::whittaker_shannon
|
/third_party/boost/libs/log/src/windows/ |
D | ipc_reliable_message_queue.cpp | 629 BOOST_ASSERT(m_impl == NULL); in create() 634 …m_impl = new implementation(open_mode::create_only, name, capacity, static_cast< size_type >(boost… in create() 645 BOOST_ASSERT(m_impl == NULL); in open_or_create() 650 …m_impl = new implementation(open_mode::open_or_create, name, capacity, static_cast< size_type >(bo… in open_or_create() 661 BOOST_ASSERT(m_impl == NULL); in open() 664 m_impl = new implementation(open_mode::open_only, name, oflow_policy, perms); in open() 675 BOOST_ASSERT(m_impl != NULL); in clear() 678 m_impl->clear(); in clear() 682 e << boost::log::ipc::object_name_info(m_impl->name()); in clear() 689 BOOST_ASSERT(m_impl != NULL); in name() [all …]
|
/third_party/boost/libs/log/src/posix/ |
D | ipc_reliable_message_queue.cpp | 680 BOOST_ASSERT(m_impl == NULL); in create() 685 …m_impl = new implementation(open_mode::create_only, name, capacity, static_cast< size_type >(boost… in create() 700 BOOST_ASSERT(m_impl == NULL); in open_or_create() 705 …m_impl = new implementation(open_mode::open_or_create, name, capacity, static_cast< size_type >(bo… in open_or_create() 720 BOOST_ASSERT(m_impl == NULL); in open() 723 m_impl = new implementation(open_mode::open_only, name, oflow_policy); in open() 738 BOOST_ASSERT(m_impl != NULL); in clear() 741 m_impl->clear(); in clear() 745 e << boost::log::ipc::object_name_info(m_impl->name()); in clear() 752 BOOST_ASSERT(m_impl != NULL); in name() [all …]
|
/third_party/boost/boost/log/utility/ipc/ |
D | reliable_message_queue.hpp | 134 implementation* m_impl; member in boost::ipc::reliable_message_queue 145 BOOST_CONSTEXPR reliable_message_queue() BOOST_NOEXCEPT : m_impl(NULL) in reliable_message_queue() 171 m_impl(NULL) in reliable_message_queue() 200 m_impl(NULL) in reliable_message_queue() 225 m_impl(NULL) in reliable_message_queue() 270 m_impl(that.m_impl) in reliable_message_queue() 272 that.m_impl = NULL; in reliable_message_queue() 299 implementation* p = m_impl; in swap() 300 m_impl = that.m_impl; in swap() 301 that.m_impl = p; in swap() [all …]
|
/third_party/boost/boost/log/detail/ |
D | attr_output_terminal.hpp | 85 impl_type m_impl; member in boost::expressions::aux::attribute_output_terminal 94 …left, attribute_name const& name, impl_type const& impl) : m_left(left), m_name(name), m_impl(impl) in attribute_output_terminal() 101 m_left(left), m_name(name), m_visitor_invoker(arg), m_impl(impl) in attribute_output_terminal() 107 …t(that.m_left), m_name(that.m_name), m_visitor_invoker(that.m_visitor_invoker), m_impl(that.m_impl) in attribute_output_terminal() 117 …, fusion::at_c< 0 >(phoenix::env(ctx).args()), binder1st< impl_type&, result_type >(m_impl, strm)); in operator ()() 127 …on::at_c< 0 >(phoenix::env(ctx).args()), binder1st< impl_type const&, result_type >(m_impl, strm)); in operator ()()
|
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/ |
D | vkPrograms.hpp | 92 explicit Iterator (const IteratorImpl& i) : m_impl(i) {} in Iterator() 94 Iterator& operator++ (void) { ++m_impl; return *this; } in operator ++() 97 const std::string& getName (void) const { return m_impl->first; } in getName() 98 const Program& getProgram (void) const { return *m_impl->second; } in getProgram() 100 bool operator== (const Iterator& other) const { return m_impl == other.m_impl; } in operator ==() 101 bool operator!= (const Iterator& other) const { return m_impl != other.m_impl; } in operator !=() 105 IteratorImpl m_impl; member in vk::ProgramCollection::Iterator
|
/third_party/boost/boost/log/expressions/formatters/ |
D | char_decorator.hpp | 274 impl_type m_impl; member in boost::expressions::aux::char_decorator_output_terminal 281 m_left(left), m_subactor(sub), m_impl(impl) in char_decorator_output_terminal() 288 m_left(that.m_left), m_subactor(that.m_subactor), m_impl(that.m_impl) in char_decorator_output_terminal() 309 m_impl(*strm.rdbuf()->storage(), start_pos); in operator ()() 332 m_impl(*strm.rdbuf()->storage(), start_pos); in operator ()() 385 impl_type m_impl; member in boost::expressions::char_decorator_terminal 391 …decorator_terminal(subactor_type const& sub, impl_type const& impl) : m_subactor(sub), m_impl(impl) in char_decorator_terminal() 397 …or_terminal(char_decorator_terminal const& that) : m_subactor(that.m_subactor), m_impl(that.m_impl) in char_decorator_terminal() 414 return m_impl; in get_impl() 444 m_impl(*strm.rdbuf()->storage()); in operator ()() [all …]
|
/third_party/boost/libs/range/test/ |
D | extension_size.cpp | 43 … friend inline const_iterator range_begin(const FooWithoutSize& obj) { return obj.m_impl.begin(); } in range_begin() 44 friend inline iterator range_begin(FooWithoutSize& obj) { return obj.m_impl.begin(); } in range_begin() 45 … friend inline const_iterator range_end(const FooWithoutSize& obj) { return obj.m_impl.end(); } in range_end() 46 friend inline iterator range_end(FooWithoutSize& obj){ return obj.m_impl.end(); } in range_end() 49 impl_t m_impl; member in boost_range_extension_size_test::FooWithoutSize
|
/third_party/boost/boost/range/adaptor/ |
D | replaced.hpp | 44 : m_impl(data(from, to)) in replace_value() 50 return (x == m_impl->m_from) ? m_impl->m_to : x; in operator ()() 65 boost::optional<data> m_impl; member in boost::range_detail::replace_value
|
D | replaced_if.hpp | 43 : m_impl(data(pred, to)) in replace_value_if() 49 return m_impl->m_pred(x) ? m_impl->m_to : x; in operator ()() 63 boost::optional<data> m_impl; member in boost::range_detail::replace_value_if
|
/third_party/vk-gl-cts/external/openglcts/modules/common/subgroups/ |
D | glcSubgroupsTestsUtils.hpp | 83 explicit Iterator (const IteratorImpl& i) : m_impl(i) {} in Iterator() 85 Iterator& operator++ (void) { ++m_impl; return *this; } in operator ++() 88 const std::string& getName (void) const { return m_impl->first; } in getName() 89 const Program& getProgram (void) const { return *m_impl->second; } in getProgram() 91 bool operator== (const Iterator& other) const { return m_impl == other.m_impl; } in operator ==() 92 bool operator!= (const Iterator& other) const { return m_impl != other.m_impl; } in operator !=() 96 IteratorImpl m_impl; member in glc::ProgramCollection::Iterator
|
/third_party/boost/boost/python/detail/ |
D | exception_handler.hpp | 34 handler_function m_impl; member 41 return this->m_impl(*this, f); in handle()
|
/third_party/boost/boost/test/tree/ |
D | decorator.hpp | 233 explicit fixture_t( test_unit_fixture_ptr impl ) : m_impl( impl ) {} in fixture_t() 238 base_ptr clone() const BOOST_OVERRIDE { return base_ptr(new fixture_t( m_impl )); } in clone() 241 test_unit_fixture_ptr m_impl; member in boost::unit_test::decorator::fixture_t
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/spirv_assembly/ |
D | vktSpvAsm64bitCompareTests.cpp | 74 return "OpF" + std::string(m_ordered ? "Ord" : "Unord") + m_impl.nameSuffix(); in spirvName() 81 return m_impl.run(left, right); in run() 85 : m_ordered(ordered), m_impl(impl) in DoubleCompareOperation() 95 const BasicImplementation& m_impl; member in vkt::SpirVAssembly::__anon048744d40111::DoubleCompareOperation 137 return "Op" + m_impl.typeChar() + m_impl.opName(); in spirvName() 142 return m_impl.run(left, right); in run() 146 : m_impl(impl) in IntCompareOperation() 150 const Implementation& m_impl; member in vkt::SpirVAssembly::__anon048744d40111::IntCompareOperation
|
/third_party/boost/libs/python/src/ |
D | errors.cpp | 80 : m_impl(impl) in exception_handler()
|
/third_party/boost/boost/test/impl/ |
D | decorator.ipp | 221 tu.p_fixtures.value.push_back( m_impl );
|