Home
last modified time | relevance | path

Searched refs:boost (Results 1 – 25 of 61) sorted by relevance

123

/external/stlport/stlport/stl/
Dboost_type_traits.h49 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 …]
Dtype_traits.h454 typedef typename __select< ::boost::is_reference<_Tp>::value,
455 typename ::boost::add_const<_Tp>::type,
456 …typename ::boost::add_reference< typename ::boost::add_const<_Tp>::type >::type>::_Ret const_param…
457 typedef typename __select< ::boost::is_reference<_Tp>::value,
458 typename ::boost::remove_const<_Tp>::type,
459 typename ::boost::add_reference<_Tp>::type>::_Ret param_type;
/external/llvm/test/Transforms/PhaseOrdering/
D2010-03-22-empty-baseclass.ll6 %"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/
Dfunctional48 #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 …]
Dmemory72 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/valgrind/main/drd/tests/
Dboost_thread.cpp11 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/
Dglibc-2.X-drd.supp276 # Suppress the races on boost::once_flag::epoch and on
277 # boost::detail::this_thread_epoch. See also the source file
278 # boost/thread/pthread/once.hpp in the Boost source tree
279 # (https://svn.boost.org/trac/boost/browser/trunk/boost/thread/pthread/once.hpp).
281 drd-libboost-boost::call_once<void (*)()>(boost::once_flag&, void (*)())
287 drd-libboost-boost::detail::get_once_per_thread_epoch()
291 # Suppress the race reports on boost::detail::current_thread_tls_key. See also
292 # https://svn.boost.org/trac/boost/ticket/3526 for more information about why
295 drd-libboost-boost::detail::get_current_thread_data()
301 drd-libboost-boost::detail::set_current_thread_data(boost::detail::thread_data_base*)
/external/clang/test/SemaTemplate/
Doverload-candidates.cpp44 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/stlport/test/unit/
Dreference_wrapper_test.cpp31 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/clang/test/Analysis/
Dcxx11-crashes.cpp15 namespace boost {namespace filesystem3 { namespace
22 namespace boost namespace
31 namespace fs = boost::filesystem; in radar11487541()
/external/eigen/bench/btl/libs/ublas/
Dublas_interface.hh28 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/stlport/test/eh/
Dbug.cpp16 std::size_t niters = argc < 2 ? 1000 : boost::lexical_cast<std::size_t>(argv[1]); in main()
18 boost::timer t; in main()
/external/stlport/
Dconfigure40 --with-boost=<dir> use boost headers in catalog <dir>
41 --with-system-boost use boost installed on this system
Dconfigure.bat64 REM boost support
65 if "%1" == "--use-boost" goto opt_bst
152 echo "--use-boost <boost install path>"
153 echo Request use of boost support (www.boost.org). For the moment only the boost
510 REM * boost support
518 echo Error: Invalid boost intallation folder ("%2").
522 echo Activating boost support using "%2" path
/external/chromium/chrome/browser/resources/gpu_internals/
Dtimeline_model.js197 var boost = (this.maxTimestamp - this.minTimestamp) * 0.15;
198 this.minTimestamp = this.minTimestamp - boost;
199 this.maxTimestamp = this.maxTimestamp + boost;
/external/eigen/bench/
Dsparse_setter.cpp427 using namespace boost; in setrand_ublas_mapped()
428 using namespace boost::numeric; in setrand_ublas_mapped()
429 using namespace boost::numeric::ublas; in setrand_ublas_mapped()
466 using namespace boost; in setrand_ublas_genvec()
467 using namespace boost::numeric; in setrand_ublas_genvec()
468 using namespace boost::numeric::ublas; in setrand_ublas_genvec()
Dspmv.cpp172 using namespace boost::numeric; in main()
176 boost::numeric::ublas::vector<Scalar> uv(cols), ures(rows); in main()
183 SPMV_BENCH(ublas::axpy_prod(boost::numeric::ublas::trans(um), uv, ures, true)); in main()
DBenchSparseUtil.h126 typedef boost::numeric::ublas::compressed_matrix<Scalar,boost::numeric::ublas::column_major> UBlasS…
Dsparse_dense_product.cpp141 boost::numeric::ublas::vector<Scalar> uv1, uv2; in main()
149 BENCH( uv2 = boost::numeric::ublas::prod(m1, uv1); ) in main()
/external/chromium-trace/trace-viewer/src/
Dtimeline.js171 var boost =
173 this.viewport_.xSetWorldRange(this.model_.minTimestamp - boost,
174 this.model_.maxTimestamp + boost,
370 var boost = worldRange * 0.15;
371 this.viewport_.xSetWorldRange(worldCenter - worldRange - boost,
372 worldCenter + worldRange + boost,
/external/clang/test/PCH/Inputs/
Dtypo.hpp1 namespace boost { namespace
/external/webrtc/src/system_wrappers/source/spreadsortlib/
Dconstants.hpp26 namespace boost { namespace
/external/aac/libAACdec/src/
Daacdec_drc_types.h136 FIXP_DBL boost; member
/external/eigen/bench/btl/cmake/
DFindMTL4.cmake20 find_path(MTL4_INCLUDE_DIR NAMES boost/numeric/mtl/mtl.hpp
/external/webrtc/src/system_wrappers/source/
Dsort.cc226 boost::integer_sort(dataT, dataT + numOfElements);
234 boost::float_sort_cast(dataT, dataT + numOfElements, cVal);
300 boost::integer_sort(ptrSortKey, ptrSortKey + numOfElements,

123