/third_party/boost/boost/graph/planar_detail/ |
D | face_handles.hpp | 285 : pimpl(new impl_t()) in face_handle() 287 pimpl->anchor = anchor; in face_handle() 291 : pimpl(new impl_t()) in face_handle() 296 pimpl->anchor = anchor; in face_handle() 297 pimpl->cached_first_edge = initial_edge; in face_handle() 298 pimpl->cached_second_edge = initial_edge; in face_handle() 299 pimpl->cached_first_vertex = other_vertex; in face_handle() 300 pimpl->cached_second_vertex = other_vertex; in face_handle() 301 pimpl->true_first_vertex = other_vertex; in face_handle() 302 pimpl->true_second_vertex = other_vertex; in face_handle() [all …]
|
/third_party/boost/tools/bcp/ |
D | fileview.cpp | 29 pimpl.reset(new implementation()); in fileview() 34 pimpl.reset(new implementation()); in fileview() 48 pimpl = that.pimpl; in operator =() 55 pimpl->m_data.clear(); in close() 71 std::copy(in, end, std::back_inserter(pimpl->m_data)); in open() 77 return pimpl->m_data.size() ? &(pimpl->m_data[0]) : 0; in begin() 82 return begin() + pimpl->m_data.size(); in end() 100 return pimpl->m_data.size(); in size() 105 return pimpl->m_data.max_size(); in max_size() 110 return pimpl->m_data.empty(); in empty() [all …]
|
D | fileview.hpp | 69 boost::shared_ptr<implementation> pimpl; member in fileview
|
/third_party/boost/libs/math/dot_net_example/boost_math/ |
D | boost_math.h | 172 return pimpl->mean(); in mean() 178 return pimpl->median(); in median() 184 return pimpl->mode(); in mode() 190 return pimpl->variance(); in variance() 196 return pimpl->standard_deviation(); in standard_deviation() 202 return pimpl->coefficient_of_variation(); in coefficient_of_variation() 208 return pimpl->skewness(); in skewness() 214 return pimpl->kurtosis(); in kurtosis() 220 return pimpl->kurtosis_excess(); in kurtosis_excess() 227 return pimpl->hazard(x); in hazard() [all …]
|
/third_party/boost/boost/poly_collection/detail/ |
D | segment.hpp | 67 pimpl{x.impl().copy()}{set_sentinel();} in segment() 70 pimpl{x.impl().copy(al)}{set_sentinel();} in segment() 74 pimpl{x.impl().move(al)}{set_sentinel();} in segment() 78 pimpl=allocator_traits::propagate_on_container_copy_assignment::value? in operator =() 86 pimpl=x.impl().move( in operator =() 95 if(typeid(*(x.pimpl))!=typeid(*(y.pimpl)))return false; in operator ==() 276 segment(segment_backend_unique_ptr&& pimpl): in segment() argument 277 pimpl{std::move(pimpl)}{set_sentinel();} in segment() 279 pimpl{x.impl().empty_copy(al)}{set_sentinel();} in segment() 281 segment_backend& impl()noexcept{return *pimpl;} in impl() [all …]
|
/third_party/boost/libs/serialization/example/ |
D | demo_pimpl_A.cpp | 24 pimpl(new B) in A() 27 delete pimpl; in ~A() 32 ar & pimpl; in serialize() local
|
D | demo_pimpl_A.hpp | 17 B *pimpl; member
|
/third_party/boost/libs/serialization/src/ |
D | basic_iarchive.cpp | 532 pimpl->next_object_pointer(t); in next_object_pointer() 537 pimpl(new basic_iarchive_impl(flags)) in basic_iarchive() 546 pimpl->set_library_version(archive_library_version); in set_library_version() 554 pimpl->reset_object_address(new_address, old_address); in reset_object_address() 562 pimpl->load_object(*this, t, bis); in load_object() 575 return pimpl->load_pointer(*this, t, bpis_ptr, finder); in load_pointer() 580 pimpl->register_type(bis); in register_basic_serializer() 586 pimpl->delete_created_pointers(); in delete_created_pointers() 591 return pimpl->m_archive_library_version; in get_library_version() 596 return pimpl->m_flags; in get_flags()
|
D | basic_oarchive.cpp | 416 : pimpl(new basic_oarchive_impl(flags)) in basic_oarchive() 428 pimpl->save_object(*this, x, bos); in save_object() 436 pimpl->save_pointer(*this, t, bpos_ptr); in save_pointer() 441 pimpl->register_type(bos); in register_basic_serializer() 451 return pimpl->m_flags; in get_flags()
|
/third_party/boost/libs/random/src/ |
D | random_device.cpp | 230 : pimpl(new impl(default_token)) in random_device() 234 : pimpl(new impl(token)) in random_device() 239 delete pimpl; in ~random_device() 249 return pimpl->next(); in operator ()()
|
/third_party/boost/boost/regex/v4/ |
D | u32regex_iterator.hpp | 78 typedef shared_ptr<impl> pimpl; typedef in boost::u32regex_iterator 135 pimpl pdata;
|
D | regex_iterator.hpp | 93 typedef shared_ptr<impl> pimpl; typedef in boost::regex_iterator 150 pimpl pdata;
|
D | regex_token_iterator.hpp | 173 typedef shared_ptr<impl> pimpl; typedef in boost::regex_token_iterator 257 pimpl pdata;
|
D | u32regex_token_iterator.hpp | 161 typedef shared_ptr<impl> pimpl; typedef in boost::u32regex_token_iterator 243 pimpl pdata;
|
/third_party/boost/boost/random/ |
D | random_device.hpp | 134 impl * pimpl; member in boost::random::random_device
|
/third_party/boost/libs/serialization/test/ |
D | test_pimpl.cpp | 22 B *pimpl; member in A
|
/third_party/boost/boost/archive/detail/ |
D | basic_oarchive.hpp | 49 boost::scoped_ptr<basic_oarchive_impl> pimpl; member in boost::archive::detail::basic_oarchive
|
D | basic_iarchive.hpp | 51 boost::scoped_ptr<basic_iarchive_impl> pimpl; member in boost::archive::detail::basic_iarchive
|
/third_party/boost/libs/multi_index/test/ |
D | test_modifiers.cpp | 106 linked_object(int n):pimpl(init(impl(n))){} in linked_object() 107 linked_object(int n,const linked_object& x):pimpl(init(impl(n,x.pimpl))){} in linked_object() 122 impl::ptr pimpl; member in linked_object
|
/third_party/boost/libs/math/doc/interpolators/ |
D | pchip.qbk | 59 Note that the interpolator is pimpl'd, so that copying the class is cheap, and hence it can be shar…
|
D | makima.qbk | 61 Note that the interpolator is pimpl'd, so that copying the class is cheap, and hence it can be shar…
|
D | quintic_hermite.qbk | 93 Note that the interpolator is pimpl'd, so that copying the class is cheap, and hence it can be shar…
|
D | cubic_hermite.qbk | 90 Note that the interpolator is pimpl'd, so that copying the class is cheap, and hence it can be shar…
|
/third_party/boost/libs/math/doc/quadrature/ |
D | ooura_fourier_integrals.qbk | 93 The integrator is pimpl'd and hence can be shared between threads without a `memcpy` of the nodes a…
|
/third_party/boost/libs/math/doc/sf/ |
D | daubechies.qbk | 75 The class is pimpl'd and all its member functions are threadsafe, so it can be copied cheaply and s…
|