/third_party/boost/boost/logic/ |
D | tribool.hpp | 62 BOOST_CONSTEXPR inline bool 90 BOOST_CONSTEXPR tribool() BOOST_NOEXCEPT : value(false_value) {} in tribool() 98 …BOOST_CONSTEXPR tribool(bool initial_value) BOOST_NOEXCEPT : value(initial_value? true_value : fal… in tribool() 105 BOOST_CONSTEXPR tribool(indeterminate_keyword_t) BOOST_NOEXCEPT : value(indeterminate_value) {} in tribool() 116 BOOST_CONSTEXPR explicit operator bool () const BOOST_NOEXCEPT in operator bool() 123 BOOST_CONSTEXPR operator safe_bool() const BOOST_NOEXCEPT in operator safe_bool() 139 BOOST_CONSTEXPR inline bool indeterminate(tribool x, detail::indeterminate_t) BOOST_NOEXCEPT in indeterminate() 172 BOOST_CONSTEXPR inline tribool operator!(tribool x) BOOST_NOEXCEPT in operator !() 212 BOOST_CONSTEXPR inline tribool operator&&(tribool x, tribool y) BOOST_NOEXCEPT in operator &&() 223 BOOST_CONSTEXPR inline tribool operator&&(tribool x, bool y) BOOST_NOEXCEPT in operator &&() [all …]
|
/third_party/boost/boost/core/ |
D | scoped_enum.hpp | 47 BOOST_CONSTEXPR UnderlyingType underlying_cast(EnumType v) BOOST_NOEXCEPT in underlying_cast() 65 BOOST_CONSTEXPR typename EnumType::enum_type native_value(EnumType e) BOOST_NOEXCEPT in native_value() 80 BOOST_CONSTEXPR UnderlyingType underlying_cast(EnumType v) BOOST_NOEXCEPT 87 BOOST_CONSTEXPR EnumType native_value(EnumType e) BOOST_NOEXCEPT 101 …explicit BOOST_CONSTEXPR operator underlying_type() const BOOST_NOEXCEPT { return get_underlying_v… 120 … explicit BOOST_CONSTEXPR EnumType(underlying_type v) BOOST_NOEXCEPT : v_(v) {} \ 121 … BOOST_CONSTEXPR underlying_type get_underlying_value_() const BOOST_NOEXCEPT { return v_; } \ 130 … BOOST_CONSTEXPR enum_type get_native_value_() const BOOST_NOEXCEPT { return enum_type(v_); } \ 131 …friend BOOST_CONSTEXPR bool operator ==(self_type lhs, self_type rhs) BOOST_NOEXCEPT { return enum… 132 …friend BOOST_CONSTEXPR bool operator ==(self_type lhs, enum_type rhs) BOOST_NOEXCEPT { return enum… [all …]
|
/third_party/boost/libs/chrono/test/duration/ |
D | arithmetic_pass.cpp | 41 BOOST_CONSTEXPR boost::chrono::minutes m(3); in main() 42 BOOST_CONSTEXPR boost::chrono::minutes m2(+m); in main() 53 BOOST_CONSTEXPR boost::chrono::minutes m(3); in main() 54 BOOST_CONSTEXPR boost::chrono::minutes m2 = -m; in main() 136 BOOST_CONSTEXPR boost::chrono::seconds s1(3); in main() 137 BOOST_CONSTEXPR boost::chrono::seconds s2(5); in main() 138 BOOST_CONSTEXPR boost::chrono::seconds r = s1 + s2; in main() 148 BOOST_CONSTEXPR boost::chrono::seconds s1(3); in main() 149 BOOST_CONSTEXPR boost::chrono::microseconds s2(5); in main() 150 BOOST_CONSTEXPR boost::chrono::microseconds r = s1 + s2; in main() [all …]
|
D | comparisons_pass.cpp | 32 BOOST_CONSTEXPR boost::chrono::seconds s1(3); in main() 33 BOOST_CONSTEXPR boost::chrono::seconds s2(3); in main() 44 BOOST_CONSTEXPR boost::chrono::seconds s1(3); in main() 45 BOOST_CONSTEXPR boost::chrono::seconds s2(4); in main() 56 BOOST_CONSTEXPR boost::chrono::milliseconds s1(3); in main() 57 BOOST_CONSTEXPR boost::chrono::microseconds s2(3000); in main() 68 BOOST_CONSTEXPR boost::chrono::milliseconds s1(3); in main() 69 BOOST_CONSTEXPR boost::chrono::microseconds s2(4000); in main() 80 BOOST_CONSTEXPR boost::chrono::duration<int, boost::ratio<2, 3> > s1(9); in main() 81 BOOST_CONSTEXPR boost::chrono::duration<int, boost::ratio<3, 5> > s2(10); in main() [all …]
|
D | constructor_pass.cpp | 42 BOOST_CONSTEXPR D d(0); in check_constexpr() 64 BOOST_CONSTEXPR boost::chrono::milliseconds ms(1); in main() 65 BOOST_CONSTEXPR boost::chrono::microseconds us = ms; in main() 75 BOOST_CONSTEXPR boost::chrono::duration<double, boost::micro> us(1); in main() 76 BOOST_CONSTEXPR boost::chrono::duration<double, boost::milli> ms = us; in main() 86 BOOST_CONSTEXPR boost::chrono::duration<int> i(3); in main() 87 BOOST_CONSTEXPR boost::chrono::duration<double> d = i; in main() 102 BOOST_CONSTEXPR boost::chrono::duration<int> d(5); in main() 107 BOOST_CONSTEXPR boost::chrono::duration<int, boost::ratio<3, 2> > d(5); in main() 112 BOOST_CONSTEXPR boost::chrono::duration<Rep, boost::ratio<3, 2> > d(Rep(3)); in main() [all …]
|
/third_party/boost/boost/chrono/ |
D | time_point.hpp | 83 inline BOOST_CONSTEXPR 90 inline BOOST_CONSTEXPR 97 inline BOOST_CONSTEXPR 104 inline BOOST_CONSTEXPR 113 inline BOOST_CONSTEXPR 118 inline BOOST_CONSTEXPR 123 inline BOOST_CONSTEXPR 128 inline BOOST_CONSTEXPR 133 inline BOOST_CONSTEXPR 138 inline BOOST_CONSTEXPR [all …]
|
D | duration.hpp | 236 BOOST_CONSTEXPR ToDuration operator()(const FromDuration& fd) const in operator ()() 251 BOOST_CONSTEXPR ToDuration operator()(const FromDuration& fd) const in operator ()() 270 BOOST_CONSTEXPR ToDuration operator()(const FromDuration& fd) const in operator ()() 290 BOOST_CONSTEXPR ToDuration operator()(const FromDuration& fd) const in operator ()() 313 BOOST_CONSTEXPR ToDuration operator()(const FromDuration& fd) const in operator ()() 383 static BOOST_CONSTEXPR Rep zero() {return Rep(0);} in zero() 437 BOOST_FORCEINLINE BOOST_CONSTEXPR 440 BOOST_CONSTEXPR duration() {} 442 BOOST_CONSTEXPR duration() = default; 445 BOOST_SYMBOL_VISIBLE BOOST_FORCEINLINE BOOST_CONSTEXPR [all …]
|
/third_party/boost/boost/fusion/sequence/ |
D | intrinsic_fwd.hpp | 96 BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED 105 BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED 110 BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED 119 BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED 124 BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED 129 BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED 134 BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED 143 BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED 152 BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED 157 BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED [all …]
|
/third_party/boost/boost/filesystem/ |
D | file_status.hpp | 131 BOOST_CONSTEXPR file_status() BOOST_NOEXCEPT : in file_status() 135 explicit BOOST_CONSTEXPR file_status(file_type v) BOOST_NOEXCEPT : in file_status() 139 BOOST_CONSTEXPR file_status(file_type v, perms prms) BOOST_NOEXCEPT : in file_status() 148 BOOST_CONSTEXPR file_status(const file_status& rhs) BOOST_NOEXCEPT : in file_status() 161 BOOST_CONSTEXPR file_status(file_status&& rhs) BOOST_NOEXCEPT : in file_status() 174 BOOST_CONSTEXPR file_type type() const BOOST_NOEXCEPT { return m_value; } in type() 175 BOOST_CONSTEXPR perms permissions() const BOOST_NOEXCEPT { return m_perms; } in permissions() 181 BOOST_CONSTEXPR bool operator==(const file_status& rhs) const BOOST_NOEXCEPT in operator ==() 185 BOOST_CONSTEXPR bool operator!=(const file_status& rhs) const BOOST_NOEXCEPT in operator !=() 195 inline BOOST_CONSTEXPR bool type_present(file_status f) BOOST_NOEXCEPT in type_present() [all …]
|
/third_party/boost/boost/units/ |
D | cmath.hpp | 50 BOOST_CONSTEXPR 60 BOOST_CONSTEXPR 70 BOOST_CONSTEXPR 80 BOOST_CONSTEXPR 90 BOOST_CONSTEXPR 101 BOOST_CONSTEXPR 112 BOOST_CONSTEXPR 123 BOOST_CONSTEXPR 134 BOOST_CONSTEXPR 145 BOOST_CONSTEXPR [all …]
|
D | absolute.hpp | 40 BOOST_CONSTEXPR absolute() : val_() { } in absolute() 41 BOOST_CONSTEXPR absolute(const value_type& val) : val_(val) { } in absolute() 42 BOOST_CONSTEXPR absolute(const this_type& source) : val_(source.val_) { } in absolute() 46 BOOST_CONSTEXPR const value_type& value() const { return val_; } in value() 57 BOOST_CONSTEXPR absolute<Y> operator+(const absolute<Y>& aval,const Y& rval) in operator +() 64 BOOST_CONSTEXPR absolute<Y> operator+(const Y& rval,const absolute<Y>& aval) in operator +() 71 BOOST_CONSTEXPR absolute<Y> operator-(const absolute<Y>& aval,const Y& rval) in operator -() 78 BOOST_CONSTEXPR Y operator-(const absolute<Y>& aval1,const absolute<Y>& aval2) in operator -() 85 BOOST_CONSTEXPR quantity<absolute<unit<D, S> >, T> operator*(const T& t, const absolute<unit<D, S> … in operator *() 92 BOOST_CONSTEXPR quantity<absolute<unit<D, S> >, T> operator*(const absolute<unit<D, S> >&, const T&… in operator *() [all …]
|
D | quantity.hpp | 101 BOOST_CONSTEXPR quantity() : val_() in quantity() 106 BOOST_CONSTEXPR quantity(unspecified_null_pointer_constant_type) : val_() in quantity() 111 BOOST_CONSTEXPR quantity(const this_type& source) : val_(source.val_) in quantity() 138 BOOST_CONSTEXPR quantity(const quantity<Unit,YY>& source, in quantity() 147 explicit BOOST_CONSTEXPR quantity(const quantity<Unit,YY>& source, in quantity() 158 BOOST_CONSTEXPR quantity(const quantity<Unit,YY>& source) : in quantity() 183 BOOST_CONSTEXPR quantity(const quantity<Unit2,YY>& source, in quantity() 201 BOOST_CONSTEXPR quantity(const quantity<Unit2,YY>& source, in quantity() 220 explicit BOOST_CONSTEXPR quantity(const quantity<Unit2,YY>& source) in quantity() 242 …BOOST_CONSTEXPR const value_type& value() const { return val_; } ///< c… in value() [all …]
|
/third_party/boost/boost/units/systems/detail/ |
D | constants.hpp | 34 BOOST_CONSTEXPR operator value_type() const { return Base().value(); } in operator value_type() 35 BOOST_CONSTEXPR value_type value() const { return Base().value(); } in value() 36 BOOST_CONSTEXPR value_type uncertainty() const { return Base().uncertainty(); } in uncertainty() 37 BOOST_CONSTEXPR value_type lower_bound() const { return Base().lower_bound(); } in lower_bound() 38 BOOST_CONSTEXPR value_type upper_bound() const { return Base().upper_bound(); } in upper_bound() 45 BOOST_CONSTEXPR operator value_type() const { return Base().value(); } in operator value_type() 46 BOOST_CONSTEXPR value_type value() const { return Base().value(); } in value() 47 BOOST_CONSTEXPR value_type uncertainty() const { return Base().uncertainty(); } in uncertainty() 48 BOOST_CONSTEXPR value_type lower_bound() const { return Base().lower_bound(); } in lower_bound() 49 BOOST_CONSTEXPR value_type upper_bound() const { return Base().upper_bound(); } in upper_bound() [all …]
|
/third_party/boost/boost/units/detail/ |
D | one.hpp | 20 struct one { BOOST_CONSTEXPR one() {} }; in one() 23 inline BOOST_CONSTEXPR one make_one() { in make_one() 46 inline BOOST_CONSTEXPR T operator*(const one&, const T& t) in operator *() 52 inline BOOST_CONSTEXPR T operator*(const T& t, const one&) in operator *() 57 inline BOOST_CONSTEXPR one operator*(const one&, const one&) in operator *() 81 inline BOOST_CONSTEXPR T operator/(const T& t, const one&) in operator /() 87 inline BOOST_CONSTEXPR T operator/(const one&, const T& t) in operator /() 92 inline BOOST_CONSTEXPR one operator/(const one&, const one&) in operator /() 98 inline BOOST_CONSTEXPR bool operator>(const boost::units::one&, const T& t) { in operator >() 103 BOOST_CONSTEXPR T one_to_double(const T& t) { return t; } in one_to_double() [all …]
|
D | static_rational_power.hpp | 53 static BOOST_CONSTEXPR type call(const Y& y) in call() 64 static BOOST_CONSTEXPR one call(const one&) in call() 74 static BOOST_CONSTEXPR one call(const one&) in call() 92 static BOOST_CONSTEXPR type call(const Y& y, const R& r) in call() 109 static BOOST_CONSTEXPR type call(const Y& y, const R& r) in call() 123 static BOOST_CONSTEXPR type call(const Y& y, const R& r) in call() 137 static BOOST_CONSTEXPR R call(const Y&, const R& r) in call() 155 static BOOST_CONSTEXPR type call(const Y& y) in call() 170 static BOOST_CONSTEXPR type call(const Y& y) in call() 182 static BOOST_CONSTEXPR type call(const Y& y) in call() [all …]
|
/third_party/boost/boost/fusion/container/list/ |
D | cons_iterator.hpp | 39 BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED 58 BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED 60 BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED 67 BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED 69 BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED 76 BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED 78 BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED 85 BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED 87 BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED 94 BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED [all …]
|
/third_party/boost/libs/chrono/test/time_point/ |
D | comparisons_pass.cpp | 39 BOOST_CONSTEXPR T1 t1(Duration1(3)); in main() 40 BOOST_CONSTEXPR T1 t2(Duration1(3)); in main() 51 BOOST_CONSTEXPR T1 t1(Duration1(3)); in main() 52 BOOST_CONSTEXPR T1 t2(Duration1(4)); in main() 63 BOOST_CONSTEXPR T1 t1(Duration1(3)); in main() 64 BOOST_CONSTEXPR T2 t2(Duration2(3000)); in main() 75 BOOST_CONSTEXPR T1 t1(Duration1(3)); in main() 76 BOOST_CONSTEXPR T2 t2(Duration2(3001)); in main() 89 BOOST_CONSTEXPR T1 t1(Duration1(3)); in main() 90 BOOST_CONSTEXPR T1 t2(Duration1(3)); in main() [all …]
|
/third_party/boost/boost/parameter/aux_/ |
D | tagged_argument.hpp | 187 inline explicit BOOST_CONSTEXPR tagged_argument(reference x) in tagged_argument() 192 inline BOOST_CONSTEXPR tagged_argument(tagged_argument const& copy) in tagged_argument() 226 inline BOOST_CONSTEXPR ::boost::parameter::aux::arg_list< 251 inline BOOST_CONSTEXPR ::boost::parameter::aux::arg_list< 278 inline BOOST_CONSTEXPR reference get_value() const in get_value() 283 inline BOOST_CONSTEXPR reference 290 inline BOOST_CONSTEXPR reference 299 inline BOOST_CONSTEXPR reference 308 inline BOOST_CONSTEXPR Default& 317 inline BOOST_CONSTEXPR Default&& [all …]
|
D | arg_list.hpp | 78 inline BOOST_CONSTEXPR empty_arg_list(Args&&...) in empty_arg_list() 107 inline BOOST_CONSTEXPR Default& 114 inline BOOST_CONSTEXPR Default&& 124 inline BOOST_CONSTEXPR 219 inline BOOST_CONSTEXPR arg_list( in arg_list() 231 inline BOOST_CONSTEXPR arg_list( in arg_list() 258 inline BOOST_CONSTEXPR arg_list( in arg_list() 286 inline BOOST_CONSTEXPR arg_list( in arg_list() 389 inline BOOST_CONSTEXPR reference 400 inline BOOST_CONSTEXPR reference [all …]
|
/third_party/boost/libs/chrono/test/ |
D | rep.h | 23 BOOST_CONSTEXPR Rep() : data_() {} in Rep() 24 explicit BOOST_CONSTEXPR Rep(int i) : data_(i) {} in Rep() 26 BOOST_CONSTEXPR bool operator==(int i) const {return data_ == i;} 27 BOOST_CONSTEXPR bool operator==(const Rep& r) const {return data_ == r.data_;} 39 static BOOST_CONSTEXPR Rep max BOOST_PREVENT_MACRO_SUBSTITUTION () 52 static BOOST_CONSTEXPR Rep zero() {return Rep(0);} 53 static BOOST_CONSTEXPR Rep max BOOST_PREVENT_MACRO_SUBSTITUTION () 58 static BOOST_CONSTEXPR Rep min BOOST_PREVENT_MACRO_SUBSTITUTION ()
|
/third_party/boost/boost/date_time/ |
D | int_adapter.hpp | 52 static BOOST_CONSTEXPR bool has_infinity() in has_infinity() 56 static BOOST_CONSTEXPR int_adapter pos_infinity() in pos_infinity() 60 static BOOST_CONSTEXPR int_adapter neg_infinity() in neg_infinity() 64 static BOOST_CONSTEXPR int_adapter not_a_number() in not_a_number() 68 static BOOST_CONSTEXPR int_adapter max BOOST_PREVENT_MACRO_SUBSTITUTION () in BOOST_PREVENT_MACRO_SUBSTITUTION() 72 static BOOST_CONSTEXPR int_adapter min BOOST_PREVENT_MACRO_SUBSTITUTION () in BOOST_PREVENT_MACRO_SUBSTITUTION() 87 static BOOST_CONSTEXPR bool is_inf(int_type v) in is_inf() 114 static BOOST_CONSTEXPR int_type maxcount() in maxcount() 118 BOOST_CONSTEXPR bool is_infinity() const in is_infinity() 123 BOOST_CONSTEXPR bool is_pos_infinity()const in is_pos_infinity() [all …]
|
/third_party/boost/boost/range/ |
D | end.hpp | 38 BOOST_CONSTEXPR inline BOOST_DEDUCED_TYPENAME range_iterator<C>::type 54 BOOST_CONSTEXPR inline Iterator range_end( const std::pair<Iterator,Iterator>& p ) in range_end() 60 BOOST_CONSTEXPR inline Iterator range_end( std::pair<Iterator,Iterator>& p ) in range_end() 70 BOOST_CONSTEXPR inline const T* range_end( const T (&a)[sz] ) BOOST_NOEXCEPT in range_end() 76 BOOST_CONSTEXPR inline T* range_end( T (&a)[sz] ) BOOST_NOEXCEPT in range_end() 90 BOOST_CONSTEXPR 102 BOOST_CONSTEXPR 120 BOOST_CONSTEXPR inline BOOST_DEDUCED_TYPENAME range_iterator<const T>::type
|
D | begin.hpp | 37 BOOST_CONSTEXPR inline BOOST_DEDUCED_TYPENAME range_iterator<C>::type 53 BOOST_CONSTEXPR inline Iterator range_begin( const std::pair<Iterator,Iterator>& p ) in range_begin() 59 BOOST_CONSTEXPR inline Iterator range_begin( std::pair<Iterator,Iterator>& p ) in range_begin() 72 BOOST_CONSTEXPR inline const T* range_begin( const T (&a)[sz] ) BOOST_NOEXCEPT in range_begin() 78 BOOST_CONSTEXPR inline T* range_begin( T (&a)[sz] ) BOOST_NOEXCEPT in range_begin() 96 BOOST_CONSTEXPR 108 BOOST_CONSTEXPR
|
/third_party/boost/boost/multiprecision/detail/ |
D | precision.hpp | 16 inline BOOST_CONSTEXPR unsigned current_precision_of_last_chance_imp(const boost::multiprecision::n… in current_precision_of_last_chance_imp() 38 inline BOOST_CONSTEXPR unsigned current_precision_of_imp(const boost::multiprecision::number<B, ET>… in current_precision_of_imp() 47 inline BOOST_CONSTEXPR unsigned current_precision_of(const Terminal&) in current_precision_of() 53 inline BOOST_CONSTEXPR unsigned current_precision_of(const Terminal (&)[N]) in current_precision_of() 59 inline BOOST_CONSTEXPR unsigned current_precision_of(const boost::multiprecision::number<B, ET>& n) in current_precision_of() 65 inline BOOST_CONSTEXPR unsigned current_precision_of(const expression<tag, Arg1, void, void, void>&… in current_precision_of() 71 inline BOOST_CONSTEXPR unsigned current_precision_of(const expression<terminal, Arg1, void, void, v… in current_precision_of() 77 inline BOOST_CONSTEXPR unsigned current_precision_of(const expression<tag, Arg1, Arg2, void, void>&… in current_precision_of() 83 inline BOOST_CONSTEXPR unsigned current_precision_of(const expression<tag, Arg1, Arg2, Arg3, void>&… in current_precision_of() 97 BOOST_CONSTEXPR scoped_default_precision(const T&) {} in scoped_default_precision() [all …]
|
/third_party/boost/boost/fusion/container/map/detail/ |
D | map_impl.hpp | 36 BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED 40 BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED 74 BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED 79 BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED 91 BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED 96 BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED 109 BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED 121 BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED 137 BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED 151 BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED
|