| /third_party/boost/boost/convert/detail/ |
| D | range.hpp | 67 struct range<T, typename enable_if<is_range<T> >::type> : public range_base<T> struct 69 typedef range this_type; 70 typedef range_base<T> base_type; 71 typedef typename base_type::iterator iterator; 72 typedef typename base_type::const_iterator const_iterator; 73 typedef const_iterator sentry_type; 75 range (T& r) : base_type(r.begin(), r.end()) {} in range() function 77 iterator end () { return base_type::end_; } in end() 78 const_iterator end () const { return base_type::end_; } in end() 79 sentry_type sentry () const { return base_type::end_; } in sentry() [all …]
|
| /third_party/boost/libs/range/test/ |
| D | adl_conformance.cpp | 70 struct range struct 72 typedef adl_types iterator; 74 range() { /* allow const objects */ } in range() function 75 iterator begin() { return unused; } in begin() 76 iterator begin() const { return unused; } in begin() 77 iterator end() { return unused; } in end() 78 iterator end() const { return unused; } in end() 101 struct range struct 103 typedef adl_types iterator; 105 range() { /* allow const objects */ } in range() argument [all …]
|
| /third_party/boost/boost/spirit/home/support/char_set/ |
| D | range.hpp | 20 struct range struct 22 typedef T value_type; 24 range() : first(), last() {} in range() argument 25 range(T first_, T last_) : first(first_), last(last_) {} in range() argument 27 T first; 28 T last;
|
| D | range_functions.hpp | 20 is_valid(Range const& range) in is_valid() 28 includes(Range const& range, Range const& other) in includes() 36 includes(Range const& range, typename Range::value_type val) in includes() 44 can_merge(Range const& range, Range const& other) in can_merge()
|
| D | range_run_impl.hpp | 22 try_merge(Run& run, Iterator iter, Range const& range) in try_merge() 76 range_run<Char>::set(range_type const& range) in set() 118 range_run<Char>::clear(range_type const& range) in clear()
|
| /third_party/boost/boost/beast/zlib/detail/ |
| D | ranges.hpp | 51 struct range struct 53 using iter_t = 58 iter_t first; 59 iter_t last; 60 iter_t next; 64 size() const in size() 71 used() const in used() 78 avail() const in avail()
|
| /third_party/boost/libs/spirit/test/x3/ |
| D | raw.cpp | 31 boost::iterator_range<char const*> range; in main() local 46 boost::iterator_range<char const*> range; in main() local 52 boost::iterator_range<char const*> range; in main() local 58 boost::iterator_range<char const*> range; in main() local 65 using range = boost::iterator_range<std::string::iterator>; in main() typedef
|
| /third_party/boost/boost/sort/common/ |
| D | range.hpp | 37 struct range struct 39 Iter_t first, last; 45 range(void) { }; in range() argument 53 range(const Iter_t &frs, const Iter_t &lst): first(frs), last(lst) { }; in range() argument 60 bool empty(void) const { return (first == last); }; in empty() 67 bool not_empty(void) const {return (first != last); }; in not_empty() 74 bool valid(void) const { return ((last - first) >= 0); }; in valid() 81 size_t size(void) const { return (last - first); }; in size() 88 Iter_t front(void) const { return first; }; in front() 95 Iter_t back(void) const {return (last - 1); }; in back()
|
| /third_party/boost/boost/algorithm/cxx11/ |
| D | is_sorted.hpp | 105 >::type is_sorted_until ( const R &range, Pred p ) in is_sorted_until() 117 …ST_CXX14_CONSTEXPR typename boost::range_iterator<const R>::type is_sorted_until ( const R &range ) in is_sorted_until() 131 is_sorted ( const R &range, Pred p ) in is_sorted() 143 BOOST_CXX14_CONSTEXPR bool is_sorted ( const R &range ) in is_sorted() 179 BOOST_CXX14_CONSTEXPR bool is_increasing ( const R &range ) in is_increasing() 211 BOOST_CXX14_CONSTEXPR bool is_decreasing ( const R &range ) in is_decreasing() 243 BOOST_CXX14_CONSTEXPR bool is_strictly_increasing ( const R &range ) in is_strictly_increasing() 274 BOOST_CXX14_CONSTEXPR bool is_strictly_decreasing ( const R &range ) in is_strictly_decreasing()
|
| /third_party/boost/boost/log/utility/manipulators/ |
| D | range.hpp | 56 range_manipulator(RangeT const& range, stored_delimiter_type delimiter) BOOST_NOEXCEPT : in range_manipulator() 93 explicit range_manipulator(RangeT const& range) BOOST_NOEXCEPT : in range_manipulator() 137 >::type range_manip(RangeT const& range, DelimiterT delimiter) BOOST_NOEXCEPT in range_manip() 155 >::type range_manip(RangeT const& range, DelimiterT const& delimiter) BOOST_NOEXCEPT in range_manip() 170 inline range_manipulator< RangeT, DelimiterElementT* > range_manip(RangeT const& range, DelimiterEl… in range_manip() 184 inline range_manipulator< RangeT, void > range_manip(RangeT const& range) BOOST_NOEXCEPT in range_manip()
|
| /third_party/skia/third_party/externals/dawn/src/tests/unittests/ |
| D | SubresourceStorageTests.cpp | 45 SubresourceRange range = SubresourceRange::MakeSingle(aspect, layer, level); in Update() local 57 SubresourceRange range = SubresourceRange::MakeSingle(aspect, layer, level); in Merge() local 131 real.Iterate([&](const SubresourceRange& range, const T& data) { in CheckSameAs() 167 s.Iterate([&](const SubresourceRange& range, const T&) { in CheckAspectCompressed() 197 s.Iterate([&](const SubresourceRange& range, const T&) { in CheckLayerCompressed() 265 const SubresourceRange& range, in CallUpdateOnBoth() 269 s->Update(range, [&](const SubresourceRange& range, T* data) { in CallUpdateOnBoth() 285 SubresourceRange range = SubresourceRange::MakeSingle(Aspect::Color, 3, 2); in TEST() local 299 SubresourceRange range = SubresourceRange::MakeSingle(Aspect::Stencil, 1, 2); in TEST() local 320 SubresourceRange range = SubresourceRange::MakeSingle(Aspect::Depth, layer, level); in TEST() local [all …]
|
| /third_party/boost/boost/sort/spreadsort/ |
| D | string_sort.hpp | 121 inline void string_sort(Range& range, Unsigned_char_type unused) in string_sort() 205 inline void string_sort(Range& range) in string_sort() 310 inline void reverse_string_sort(Range& range, Compare comp, Unsigned_char_type unused) in reverse_string_sort() 401 inline void reverse_string_sort(Range& range, Compare comp) in reverse_string_sort() 506 inline void string_sort(Range& range, Get_char get_character, Get_length length) in string_sort() 618 inline void string_sort(Range& range, in string_sort() 733 inline void reverse_string_sort(Range& range, Get_char get_character, Get_length length, Compare co… in reverse_string_sort()
|
| D | integer_sort.hpp | 120 inline void integer_sort(Range& range) in integer_sort() 213 inline void integer_sort(Range& range, Right_shift shift, Compare comp) in integer_sort() 306 inline void integer_sort(Range& range, Right_shift shift) in integer_sort()
|
| /third_party/typescript_eslint/packages/typescript-estree/tests/lib/ |
| D | parse.test.ts | 41 range: true, constant 74 range: true, constant 123 range: true, constant 156 range: true, constant 293 range: true, constant 467 range: true, constant 621 range: true, constant
|
| /third_party/ltp/testcases/kernel/hotplug/memory_hotplug/ |
| D | segment.h | 45 typedef struct range { struct 48 } range_t; argument
|
| /third_party/gstreamer/gstplugins_base/gst-libs/gst/rtsp/ |
| D | gstrtsprange.c | 111 parse_npt_range (const gchar * str, GstRTSPTimeRange * range) in parse_npt_range() 185 parse_utc_range (const gchar * str, GstRTSPTimeRange * range) in parse_utc_range() 237 parse_smpte_range (const gchar * str, GstRTSPTimeRange * range) in parse_smpte_range() 267 gst_rtsp_range_parse (const gchar * rangestr, GstRTSPTimeRange ** range) in gst_rtsp_range_parse() 405 range_to_string (const GstRTSPTimeRange * range, GString * string) in range_to_string() 430 gst_rtsp_range_to_string (const GstRTSPTimeRange * range) in gst_rtsp_range_to_string() 479 gst_rtsp_range_free (GstRTSPTimeRange * range) in gst_rtsp_range_free() 584 gst_rtsp_range_get_times (const GstRTSPTimeRange * range, in gst_rtsp_range_get_times() 677 gst_rtsp_range_convert_units (GstRTSPTimeRange * range, GstRTSPRangeUnit unit) in gst_rtsp_range_convert_units()
|
| /third_party/boost/boost/algorithm/ |
| D | find_backward.hpp | 32 typename boost::range_iterator<Range>::type find_backward(Range & range, const T & x) in find_backward() 51 typename boost::range_iterator<Range>::type find_not_backward(Range & range, const T & x) in find_not_backward() 70 typename boost::range_iterator<Range>::type find_if_backward(Range & range, Pred p) in find_if_backward() 89 typename boost::range_iterator<Range>::type find_if_not_backward(Range & range, Pred p) in find_if_not_backward()
|
| /third_party/boost/libs/spirit/test/qi/ |
| D | raw.cpp | 27 boost::iterator_range<char const*> range; in main() local 42 boost::iterator_range<char const*> range; in main() local
|
| /third_party/gn/src/gn/ |
| D | err.cc | 28 void FillRangeOnLine(const LocationRange& range, in FillRangeOnLine() 70 for (const auto& range : ranges) in OutputHighlighedPosition() local 96 Err::Err(const LocationRange& range, in Err() 120 LocationRange range = node->GetRange(); in Err() local 131 LocationRange range = value.origin()->GetRange(); in Err() local
|
| /third_party/boost/boost/xpressive/detail/utility/chset/ |
| D | range_run.hpp | 31 struct range struct 41 Char first_; 42 Char last_;
|
| /third_party/json/doc/mkdocs/docs/home/ |
| D | exceptions.md | 708 ### json.exception.out_of_range.401 718 ### json.exception.out_of_range.402 728 ### json.exception.out_of_range.403 738 ### json.exception.out_of_range.404 748 ### json.exception.out_of_range.405 758 ### json.exception.out_of_range.406 768 ### json.exception.out_of_range.407 782 ### json.exception.out_of_range.408 792 ### json.exception.out_of_range.409
|
| /third_party/gettext/gettext-tools/src/ |
| D | cldr-plural-exp.c | 48 cldr_plural_range_free (struct cldr_plural_range_ty *range) in cldr_plural_range_free() 138 struct cldr_plural_range_ty *range = relation->ranges->items[i]; in eval_relation() local 166 struct cldr_plural_range_ty *range = relation->ranges->items[i]; in eval_relation() local 360 struct cldr_plural_range_ty *range = relation->ranges->items[i]; in apply_condition() local 393 struct cldr_plural_range_ty *range = relation->ranges->items[i]; in print_relation() local 436 struct cldr_plural_range_ty *range = relation->ranges->items[i]; in print_relation() local 546 struct cldr_plural_range_ty *range = in print_condition_greater() local 556 struct cldr_plural_range_ty *range = in print_condition_greater() local
|
| /third_party/boost/boost/python/ |
| D | slice.hpp | 104 struct range struct in boost::python::slice 106 RandomAccessIterator start; 107 RandomAccessIterator stop; 108 typename iterator_difference<RandomAccessIterator>::type step;
|
| /third_party/skia/third_party/externals/expat/expat/gennmtab/ |
| D | gennmtab.c | 39 struct range { struct 44 struct range nmstrt[] = { argument
|
| /third_party/e2fsprogs/contrib/android/ |
| D | block_range.c | 10 struct block_range *range = malloc(sizeof(*range)); in new_block_range() local 25 struct block_range *range = new_block_range(blk_start, blk_end); in add_blocks_to_range() local 48 int write_block_ranges(FILE *f, struct block_range *range, in write_block_ranges()
|