Home
last modified time | relevance | path

Searched refs:is_range (Results 1 – 14 of 14) sorted by relevance

/third_party/boost/boost/numeric/odeint/util/detail/
Dis_range.hpp50 struct is_range : boost::mpl::and_<range_detail::has_iterator<Range>, range_detail::has_const_itera… struct
59 struct is_range< std::pair<iteratorT,iteratorT> > : boost::mpl::true_ struct
64 struct is_range< const std::pair<iteratorT,iteratorT> > : boost::mpl::true_ struct
73 struct is_range< elementT[sz] > : boost::mpl::true_ struct
78 struct is_range< const elementT[sz] > : boost::mpl::true_ struct
87 struct is_range< char* > : boost::mpl::true_ struct
92 struct is_range< wchar_t* > : boost::mpl::true_ struct
97 struct is_range< const char* > : boost::mpl::true_ struct
102 struct is_range< const wchar_t* > : boost::mpl::true_ struct
107 struct is_range< char* const > : boost::mpl::true_ struct
[all …]
/third_party/boost/boost/convert/detail/
Drange.hpp17 template<typename T, bool is_class> struct is_range : std::false_type {}; struct
19 template<typename T> struct is_range<T, /*is_class=*/true> struct
27 …template<typename T> struct is_range : detail::is_range<typename boost::remove_const<T>::type, boo… struct
32 struct iterator<T, typename enable_if<is_range<T> >::type>
67 struct range<T, typename enable_if<is_range<T> >::type> : public range_base<T>
Dis_string.hpp31 boost::is_class<T>::value && boost::cnv::is_range<T>::value> {};
/third_party/boost/boost/spirit/home/x3/support/traits/
Dis_range.hpp17 struct is_range struct
22 struct is_range<boost::iterator_range<T>> struct
Dattribute_category.hpp80 typename enable_if<traits::is_range<T>>::type>
89 , mpl::not_<traits::is_range<T> >
/third_party/boost/libs/geometry/test/algorithms/detail/
Dtupled_output.cpp76 BOOST_CHECK_EQUAL((bgd::is_range<int>::value), false); in test_main()
77 BOOST_CHECK_EQUAL((bgd::is_range<linestring>::value), true); in test_main()
78 BOOST_CHECK_EQUAL((bgd::is_range<multi_point>::value), true); in test_main()
/third_party/boost/boost/numeric/odeint/util/
Dcopy.hpp59 typedef typename boost::numeric::odeint::detail::is_range< Container1 >::type is_range_type; in copy()
/third_party/boost/boost/geometry/index/detail/
Dmeta.hpp22 struct is_range struct
/third_party/jerryscript/jerry-core/parser/regexp/
Dre-parser.c947 bool is_range = false; in re_parse_char_class() local
967 if (is_range) in re_parse_char_class()
1046 if (is_range) in re_parse_char_class()
1048 is_range = false; in re_parse_char_class()
1090 is_range = true; in re_parse_char_class()
/third_party/openssl/crypto/x509v3/
Dv3_asid.c532 int i1 = 0, i2 = 0, i3 = 0, is_range = 0, which = 0; in v2i_ASIdentifiers() local
565 is_range = 0; in v2i_ASIdentifiers()
567 is_range = 1; in v2i_ASIdentifiers()
589 if (!is_range) { in v2i_ASIdentifiers()
/third_party/boost/libs/convert/doc/
Dtools.qbk22 [section boost::cnv::is_range]
/third_party/ffmpeg/libavutil/
Dopt.h327 int is_range; member
Dopt.c1886 range->is_range = 1; in av_opt_query_ranges_default()
/third_party/boost/boost/geometry/algorithms/detail/
Dtupled_output.hpp88 struct is_range struct
93 template <typename T, bool IsRange = is_range<T>::value>