/third_party/boost/libs/type_traits/test/ |
D | is_complex_test.cpp | 25 TT_TEST_BEGIN(is_complex) 27 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_complex<int>::value, false); 28 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_complex<double>::value, false); 29 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_complex<float>::value, false); 30 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_complex<bad_struct>::value, false); 32 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_complex<std::complex<long double> >::value, true); 33 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_complex<std::complex<double> >::value, true); 34 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_complex<std::complex<float> >::value, true); 35 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_complex<const std::complex<long double> >::value, true); 36 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_complex<const std::complex<double> >::value, true); [all …]
|
D | type_traits_test.cpp | 53 typedef boost::is_complex<int>::type t36;
|
/third_party/boost/boost/type_traits/ |
D | is_complex.hpp | 17 template <class T> struct is_complex : public false_type {}; struct 18 template <class T> struct is_complex<const T > : public is_complex<T>{}; struct 19 template <class T> struct is_complex<volatile const T > : public is_complex<T>{}; struct 20 template <class T> struct is_complex<volatile T > : public is_complex<T>{}; struct 21 template <class T> struct is_complex<std::complex<T> > : public true_type{}; struct
|
/third_party/boost/libs/type_traits/doc/ |
D | is_complex.qbk | 8 [section:is_complex is_complex] 11 struct is_complex : public __tof {}; 20 __header ` #include <boost/type_traits/is_complex.hpp>` or ` #include <boost/type_traits.hpp>`
|
D | type_traits.qbk | 152 [def __is_complex [link boost_typetraits.reference.is_complex is_complex]] 405 [include is_complex.qbk]
|
/third_party/flutter/engine/flutter/flow/ |
D | raster_cache.cc | 71 bool is_complex) { in IsPictureWorthRasterizing() argument 84 if (is_complex) { in IsPictureWorthRasterizing() 188 bool is_complex, in Prepare() argument 193 if (!IsPictureWorthRasterizing(picture, will_change, is_complex)) { in Prepare()
|
D | raster_cache.h | 88 bool is_complex,
|
/third_party/flutter/engine/flutter/flow/layers/ |
D | picture_layer.cc | 14 bool is_complex, in PictureLayer() argument 18 is_complex_(is_complex), in PictureLayer()
|
D | picture_layer.h | 20 bool is_complex,
|
/third_party/boost/boost/math/tools/ |
D | complex.hpp | 23 struct is_complex_type : public boost::is_complex<T> {};
|
/third_party/ffmpeg/libavcodec/ |
D | h264_mb.c | 803 int is_complex = CONFIG_SMALL || sl->is_complex || in ff_h264_hl_decode_mb() local 807 if (is_complex || h->pixel_shift) in ff_h264_hl_decode_mb() 811 } else if (is_complex) { in ff_h264_hl_decode_mb()
|
D | h264dec.h | 245 int is_complex; member
|
D | h264_slice.c | 2610 sl->is_complex = FRAME_MBAFF(h) || h->picture_structure != PICT_FRAME || in decode_slice()
|
/third_party/harfbuzz/src/ |
D | gen-tag-table.py | 284 def is_complex (self): member in LanguageTag 975 ] if lt_tags[0].is_complex ()),
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
D | gen-tag-table.py | 284 def is_complex (self): member in LanguageTag 975 ] if lt_tags[0].is_complex ()),
|
/third_party/flutter/skia/third_party/externals/harfbuzz/src/ |
D | gen-tag-table.py | 291 def is_complex (self): member in LanguageTag 958 ] if lt_tags[0].is_complex ()),
|
/third_party/boost/libs/type_traits/doc/html/ |
D | standalone_HTML.manifest | 112 boost_typetraits/reference/is_complex.html
|
/third_party/boost/boost/multiprecision/ |
D | complex_adaptor.hpp | 339 inline typename disable_if_c<boost::is_complex<Result>::value>::type eval_convert_to(Result* result… in eval_convert_to()
|
D | number.hpp | 866 …constructible<T>::value || (!boost::is_arithmetic<T>::value && !boost::is_complex<T>::value), T>::…
|
/third_party/boost/libs/math/test/ |
D | univariate_statistics_test.cpp | 67 else if constexpr (boost::is_complex<T>::value) in generate_random_vector()
|
D | norms_test.cpp | 80 else if constexpr (boost::is_complex<T>::value) in generate_random_vector()
|