Home
last modified time | relevance | path

Searched refs:is_complex (Results 1 – 21 of 21) sorted by relevance

/third_party/boost/libs/type_traits/test/
Dis_complex_test.cpp25 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 …]
Dtype_traits_test.cpp53 typedef boost::is_complex<int>::type t36;
/third_party/boost/boost/type_traits/
Dis_complex.hpp17 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/
Dis_complex.qbk8 [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>`
Dtype_traits.qbk152 [def __is_complex [link boost_typetraits.reference.is_complex is_complex]]
405 [include is_complex.qbk]
/third_party/flutter/engine/flutter/flow/
Draster_cache.cc71 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()
Draster_cache.h88 bool is_complex,
/third_party/flutter/engine/flutter/flow/layers/
Dpicture_layer.cc14 bool is_complex, in PictureLayer() argument
18 is_complex_(is_complex), in PictureLayer()
Dpicture_layer.h20 bool is_complex,
/third_party/boost/boost/math/tools/
Dcomplex.hpp23 struct is_complex_type : public boost::is_complex<T> {};
/third_party/ffmpeg/libavcodec/
Dh264_mb.c803 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()
Dh264dec.h245 int is_complex; member
Dh264_slice.c2610 sl->is_complex = FRAME_MBAFF(h) || h->picture_structure != PICT_FRAME || in decode_slice()
/third_party/harfbuzz/src/
Dgen-tag-table.py284 def is_complex (self): member in LanguageTag
975 ] if lt_tags[0].is_complex ()),
/third_party/skia/third_party/externals/harfbuzz/src/
Dgen-tag-table.py284 def is_complex (self): member in LanguageTag
975 ] if lt_tags[0].is_complex ()),
/third_party/flutter/skia/third_party/externals/harfbuzz/src/
Dgen-tag-table.py291 def is_complex (self): member in LanguageTag
958 ] if lt_tags[0].is_complex ()),
/third_party/boost/libs/type_traits/doc/html/
Dstandalone_HTML.manifest112 boost_typetraits/reference/is_complex.html
/third_party/boost/boost/multiprecision/
Dcomplex_adaptor.hpp339 inline typename disable_if_c<boost::is_complex<Result>::value>::type eval_convert_to(Result* result… in eval_convert_to()
Dnumber.hpp866 …constructible<T>::value || (!boost::is_arithmetic<T>::value && !boost::is_complex<T>::value), T>::…
/third_party/boost/libs/math/test/
Dunivariate_statistics_test.cpp67 else if constexpr (boost::is_complex<T>::value) in generate_random_vector()
Dnorms_test.cpp80 else if constexpr (boost::is_complex<T>::value) in generate_random_vector()