/external/stlport/stlport/stl/ |
D | boost_type_traits.h | 49 enum { _Is = ::boost::is_reference<_Tp>::value }; 54 enum { is_pointer = ::boost::is_pointer<_Tp>::value }; 59 enum { is_integral = ::boost::is_integral<_Tp>::value }; 64 enum { is_float = ::boost::is_float<_Tp>::value }; 70 enum { trivial_constructor = ::boost::has_trivial_constructor<_Tp>::value }; 73 enum { trivial_copy = ::boost::has_trivial_copy<_Tp>::value }; 76 enum { trivial_assign = ::boost::has_trivial_assign<_Tp>::value }; 79 enum { trivial_destructor = ::boost::has_trivial_destructor<_Tp>::value }; 82 enum { pod = ::boost::is_pod<_Tp>::value }; 88 typedef typename ::boost::remove_cv<_Tp1>::type uncv1; [all …]
|
/external/mesa3d/src/gallium/auxiliary/gallivm/ |
D | f.cpp | 62 boost::math::ntl::RR exp2(const boost::math::ntl::RR& x) in exp2() 67 boost::math::ntl::RR log2(const boost::math::ntl::RR& x) in log2() 72 boost::math::ntl::RR f(const boost::math::ntl::RR& x, int variant) in f() 88 const boost::math::tools::polynomial<boost::math::ntl::RR>& n, in show_extra() 89 const boost::math::tools::polynomial<boost::math::ntl::RR>& d, in show_extra() 90 const boost::math::ntl::RR& x_offset, in show_extra() 91 const boost::math::ntl::RR& y_offset, in show_extra()
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/ |
D | f.cpp | 62 boost::math::ntl::RR exp2(const boost::math::ntl::RR& x) in exp2() 67 boost::math::ntl::RR log2(const boost::math::ntl::RR& x) in log2() 72 boost::math::ntl::RR f(const boost::math::ntl::RR& x, int variant) in f() 88 const boost::math::tools::polynomial<boost::math::ntl::RR>& n, in show_extra() 89 const boost::math::tools::polynomial<boost::math::ntl::RR>& d, in show_extra() 90 const boost::math::ntl::RR& x_offset, in show_extra() 91 const boost::math::ntl::RR& y_offset, in show_extra()
|
/external/llvm/test/Transforms/PhaseOrdering/ |
D | 2010-03-22-empty-baseclass.ll | 6 %"struct.boost::compressed_pair<empty_t,int>" = type { %"struct.boost::details::compressed_pair_imp… 7 %"struct.boost::details::compressed_pair_imp<empty_t,int,1>" = type { i32 } 22 …%x = alloca %"struct.boost::compressed_pair<empty_t,int>" ; <%"struct.boost::compressed_pair<empty… 26 …%3 = call i32* @_ZN5boost15compressed_pairI7empty_tiE6secondEv(%"struct.boost::compressed_pair<emp… 28 …%4 = call %struct.empty_base_t* @_ZN5boost15compressed_pairI7empty_tiE5firstEv(%"struct.boost::com… 31 …%5 = call i32* @_ZN5boost15compressed_pairI7empty_tiE6secondEv(%"struct.boost::compressed_pair<emp… 82 … @_ZN5boost7details19compressed_pair_impI7empty_tiLi1EE6secondEv(%"struct.boost::details::compress… 84 …%this_addr = alloca %"struct.boost::details::compressed_pair_imp<empty_t,int,1>"*, align 8 ; <%"st… 88 …store %"struct.boost::details::compressed_pair_imp<empty_t,int,1>"* %this, %"struct.boost::details… 89 …%1 = load %"struct.boost::details::compressed_pair_imp<empty_t,int,1>"** %this_addr, align 8 ; <%"… [all …]
|
/external/stlport/stlport/ |
D | functional | 48 #include <boost/ref.hpp> 49 #include <boost/utility/result_of.hpp> 50 #include <boost/bind/placeholders.hpp> 51 #include <boost/mem_fn.hpp> 52 #include <boost/bind.hpp> 54 namespace boost { 68 } // namespace boost 74 using ::boost::reference_wrapper; 75 using ::boost::ref; 76 using ::boost::cref; [all …]
|
D | memory | 72 namespace boost { 90 } // namespace boost 93 # include <boost/shared_ptr.hpp> 96 # include <boost/weak_ptr.hpp> 99 # include <boost/enable_shared_from_this.hpp> 106 using ::boost::bad_weak_ptr; 107 using ::boost::shared_ptr; 108 using ::boost::swap; 109 using ::boost::static_pointer_cast; 110 using ::boost::dynamic_pointer_cast; [all …]
|
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/base/memory/ |
D | singleton.h | 30 class Singleton : private boost::noncopyable { 35 boost::call_once(Init, flag); in GetInstance() 44 static boost::scoped_ptr<T> instance; 45 static boost::once_flag flag; 48 template <class T> boost::scoped_ptr<T> Singleton<T>::instance; 49 template <class T> boost::once_flag Singleton<T>::flag = BOOST_ONCE_INIT;
|
/external/valgrind/main/drd/tests/ |
D | boost_thread.cpp | 11 static boost::condition s_cva; 12 static boost::mutex s_m; 18 boost::mutex::scoped_lock sl(s_m); in thread_func() 26 boost::mutex::scoped_lock sl(s_m); in main() 27 boost::thread t(thread_func); in main()
|
/external/valgrind/main/ |
D | glibc-2.X-drd.supp | 283 # Suppress the races on boost::once_flag::epoch and on 284 # boost::detail::this_thread_epoch. See also the source file 285 # boost/thread/pthread/once.hpp in the Boost source tree 286 # (https://svn.boost.org/trac/boost/browser/trunk/boost/thread/pthread/once.hpp). 288 drd-libboost-boost::call_once<void (*)()>(boost::once_flag&, void (*)()) 294 drd-libboost-boost::detail::get_once_per_thread_epoch() 298 # Suppress the race reports on boost::detail::current_thread_tls_key. See also 299 # https://svn.boost.org/trac/boost/ticket/3526 for more information about why 302 drd-libboost-boost::detail::get_current_thread_data() 308 drd-libboost-boost::detail::set_current_thread_data(boost::detail::thread_data_base*)
|
/external/stlport/test/unit/ |
D | reference_wrapper_test.cpp | 31 CPPUNIT_CHECK( (::boost::is_convertible<rr_type, int&>::value) ); in ref() 32 CPPUNIT_CHECK( (::boost::is_same<rr_type::type, int>::value) ); in ref() 62 CPPUNIT_CHECK( (::boost::is_convertible<crr_type, const int&>::value) ); in cref() 63 CPPUNIT_CHECK( (::boost::is_same<crr_type::type, const int>::value) ); in cref()
|
/external/chromium_org/chrome/browser/ui/app_list/search/ |
D | mixer.cc | 54 Group(size_t max_results, double boost) in Group() argument 56 boost_(boost) { in Group() 78 double boost = boost_; in FetchResults() local 84 boost = 4.0; in FetchResults() 87 boost = 3.75; in FetchResults() 90 boost = 3.25; in FetchResults() 93 boost = 3.0; in FetchResults() 103 (*result_it)->relevance() + boost)); in FetchResults()
|
/external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/ |
D | move_convert07.fail.cpp | 43 boost::unique_ptr<B[]> s(new B); in main() 45 boost::unique_ptr<A[]> s2(new A); in main() 47 s2 = boost::move(s); in main()
|
D | move_convert09.fail.cpp | 48 boost::unique_ptr<B[], Deleter<B>&> s(new B, db); in main() 51 boost::unique_ptr<A[], Deleter<A>&> s2(new A, da); in main() 52 s2 = boost::move(s); in main()
|
D | move_convert08.fail.cpp | 45 boost::unique_ptr<B[], Deleter<B> > s(new B); in main() 47 boost::unique_ptr<A[], Deleter<A> > s2(new A); in main() 49 s2 = (boost::move(s)); in main()
|
D | move_convert04.fail.cpp | 45 const boost::unique_ptr<B[]> s(new B); in main() 47 boost::unique_ptr<A[]> s2; in main()
|
D | move_convert02.fail.cpp | 47 boost::unique_ptr<B[], Deleter<B> > s(new B); in main() 49 boost::unique_ptr<A[], Deleter<A> > s2; in main()
|
D | move_convert05.fail.cpp | 47 const boost::unique_ptr<B[], Deleter<B> > s(new B); in main() 49 boost::unique_ptr<A[], Deleter<A> > s2; in main()
|
D | move_convert03.fail.cpp | 48 boost::unique_ptr<B[], Deleter<B>&> s(new B, db); in main() 51 boost::unique_ptr<A[], Deleter<A>&> s2(new A, da); in main()
|
/external/clang/test/SemaTemplate/ |
D | overload-candidates.cpp | 44 namespace boost { namespace 48 template<typename T> typename boost::enable_if<sizeof(T) == 4, int>::type if_size_4(); // expected-… 52 template<typename Cond, typename T = void> struct enable_if : boost::enable_if<Cond::value, T> {}; 62 …typename boost::enable_if<sizeof(T) == 4, int>::type f(); // expected-error{{no type named 'type' …
|
/external/clang/test/Analysis/ |
D | cxx11-crashes.cpp | 16 namespace boost {namespace filesystem3 { namespace 23 namespace boost namespace 32 namespace fs = boost::filesystem; in radar11487541()
|
/external/eigen/bench/btl/libs/ublas/ |
D | ublas_interface.hh | 28 using namespace boost::numeric; 40 …typedef typename boost::numeric::ublas::matrix<real,boost::numeric::ublas::column_major> gene_matr… 41 typedef typename boost::numeric::ublas::vector<real> gene_vector;
|
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/base/synchronization/ |
D | lock.h | 26 typedef boost::mutex Lock; 27 typedef boost::mutex::scoped_lock AutoLock;
|
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/cff/ |
D | cf2blues.c | 409 blues->boost = FT_MulFix( in cf2_blues_init() 414 if ( blues->boost > 0x7FFF ) in cf2_blues_init() 417 blues->boost = 0x7FFF; in cf2_blues_init() 423 blues->boost = 0; in cf2_blues_init() 435 blues->boost ); in cf2_blues_init() 441 blues->boost ); in cf2_blues_init()
|
/external/freetype/src/cff/ |
D | cf2blues.c | 411 blues->boost = cf2_floatToFixed( .6 ) - in cf2_blues_init() 415 if ( blues->boost > 0x7FFF ) in cf2_blues_init() 418 blues->boost = 0x7FFF; in cf2_blues_init() 424 blues->boost = 0; in cf2_blues_init() 436 blues->boost ); in cf2_blues_init() 442 blues->boost ); in cf2_blues_init()
|
/external/chromium_org/third_party/freetype/src/cff/ |
D | cf2blues.c | 409 blues->boost = FT_MulFix( in cf2_blues_init() 414 if ( blues->boost > 0x7FFF ) in cf2_blues_init() 417 blues->boost = 0x7FFF; in cf2_blues_init() 423 blues->boost = 0; in cf2_blues_init() 435 blues->boost ); in cf2_blues_init() 441 blues->boost ); in cf2_blues_init()
|