Home
last modified time | relevance | path

Searched refs:Range (Results 1 – 25 of 938) sorted by relevance

12345678910>>...38

/third_party/boost/boost/range/adaptor/
Ddefine_adaptor.hpp19 template<typename Range> range_adaptor <Range> \
20 operator|(Range& rng, adaptor_name##_forwarder) \
22 return range_adaptor <Range>( rng ); \
25 template<typename Range> range_adaptor <const Range> \
26 operator|(const Range& rng, adaptor_name##_forwarder) \
28 return range_adaptor <const Range>( rng ); \
33 template<typename Range> \
34 range_adaptor <Range> \
35 make_##adaptor_name(Range& rng) \
37 return range_adaptor <Range>(rng); \
[all …]
/third_party/flutter/flutter/dev/manual_tests/lib/
Dtext.dart1412 class Range {
1413 const Range(this.start, this.end);
1420 const List<Range> characterRanges = <Range>[
1421 Range(0x00020, 0x0007e),
1422 Range(0x000a0, 0x000ac),
1423 Range(0x000ae, 0x002ff),
1424 Range(0x00370, 0x00377),
1425 Range(0x0037a, 0x0037f),
1426 Range(0x00384, 0x0038a),
1427 Range(0x0038c, 0x0038c),
[all …]
/third_party/boost/boost/geometry/iterators/detail/segment_iterator/
Drange_segment_iterator.hpp31 template <typename Range, closure_selector Closure = closure<Range>::value>
34 typedef typename boost::range_iterator<Range>::type type;
37 template <typename Range>
38 struct range_iterator_type<Range, open>
40 typedef closing_iterator<Range> type;
45 template <typename Range, closure_selector Closure = closure<Range>::value>
48 static inline typename range_iterator_type<Range, Closure>::type
49 apply(Range& range) in apply()
55 template <typename Range>
56 struct range_iterator_begin<Range, open>
[all …]
/third_party/boost/boost/stl_interfaces/
Dfwd.hpp48 template<typename Range, typename = void>
50 template<typename Range>
52 Range,
53 void_t<decltype(std::declval<Range &>().begin())>>
55 using type = decltype(std::declval<Range &>().begin());
57 template<typename Range>
58 using iterator_t = typename iterator<Range>::type;
60 template<typename Range, typename = void>
62 template<typename Range>
64 Range,
[all …]
/third_party/boost/boost/geometry/util/
Drange.hpp116 template <typename Range>
117 inline typename boost::range_reference<Range const>::type
118 front(Range const& rng) in front()
128 template <typename Range>
129 inline typename boost::range_reference<Range>::type
130 front(Range & rng) in front()
170 template <typename Range>
171 inline void clear(Range & rng) in clear()
174 geometry::traits::clear<Range>::apply(rng); in clear()
182 template <typename Range>
[all …]
/third_party/boost/boost/spirit/home/support/char_set/
Drange_functions.hpp18 template <typename Range>
20 is_valid(Range const& range) in is_valid()
26 template <typename Range>
28 includes(Range const& range, Range const& other) in includes()
34 template <typename Range>
36 includes(Range const& range, typename Range::value_type val) in includes()
42 template <typename Range>
44 can_merge(Range const& range, Range const& other) in can_merge()
49 typedef typename Range::value_type value_type; in can_merge()
63 template <typename Range>
[all …]
/third_party/abseil-cpp/absl/container/
Dfixed_array_benchmark.cc44 ->Range(0, 1 << 16);
45 BENCHMARK_TEMPLATE(BM_FixedArray, char, 0)->Range(0, 1 << 16);
46 BENCHMARK_TEMPLATE(BM_FixedArray, char, 1)->Range(0, 1 << 16);
47 BENCHMARK_TEMPLATE(BM_FixedArray, char, 16)->Range(0, 1 << 16);
48 BENCHMARK_TEMPLATE(BM_FixedArray, char, 256)->Range(0, 1 << 16);
49 BENCHMARK_TEMPLATE(BM_FixedArray, char, 65536)->Range(0, 1 << 16);
52 ->Range(0, 1 << 16);
53 BENCHMARK_TEMPLATE(BM_FixedArray, SimpleClass, 0)->Range(0, 1 << 16);
54 BENCHMARK_TEMPLATE(BM_FixedArray, SimpleClass, 1)->Range(0, 1 << 16);
55 BENCHMARK_TEMPLATE(BM_FixedArray, SimpleClass, 16)->Range(0, 1 << 16);
[all …]
/third_party/skia/third_party/externals/abseil-cpp/absl/container/
Dfixed_array_benchmark.cc44 ->Range(0, 1 << 16);
45 BENCHMARK_TEMPLATE(BM_FixedArray, char, 0)->Range(0, 1 << 16);
46 BENCHMARK_TEMPLATE(BM_FixedArray, char, 1)->Range(0, 1 << 16);
47 BENCHMARK_TEMPLATE(BM_FixedArray, char, 16)->Range(0, 1 << 16);
48 BENCHMARK_TEMPLATE(BM_FixedArray, char, 256)->Range(0, 1 << 16);
49 BENCHMARK_TEMPLATE(BM_FixedArray, char, 65536)->Range(0, 1 << 16);
52 ->Range(0, 1 << 16);
53 BENCHMARK_TEMPLATE(BM_FixedArray, SimpleClass, 0)->Range(0, 1 << 16);
54 BENCHMARK_TEMPLATE(BM_FixedArray, SimpleClass, 1)->Range(0, 1 << 16);
55 BENCHMARK_TEMPLATE(BM_FixedArray, SimpleClass, 16)->Range(0, 1 << 16);
[all …]
/third_party/flutter/skia/third_party/externals/spirv-tools/test/val/
Dval_layout_test.cpp55 struct Range { struct
56 explicit Range(bool inverse = false) : inverse_(inverse) {} in Range() function
125 pred_type All = Range<0, kRangeEnd>();
129 ::testing::Combine(::testing::Range((int)0, (int)getInstructions().size()),
136 …g::Values( make_tuple(string("OpCapability") , Equals<0> , Range<0, 2>())
139 … , make_tuple(string("OpMemoryModel") , Equals<3> , Range<1, kRangeEnd>())
142 … , make_tuple(string("OpSource ") , Range<6, 10>() , Range<7, kRangeEnd>())
143 … , make_tuple(string("OpSourceContinued ") , Range<6, 10>() , All)
144 … , make_tuple(string("OpSourceExtension ") , Range<6, 10>() , All)
145 … , make_tuple(string("%str2 = OpString ") , Range<6, 10>() , All)
[all …]
/third_party/boost/libs/range/doc/
Dmfc_atl.rst3 |Boost| Range MFC/ATL Extension
23 Boost.Range MFC/ATL Extension provides `Boost.Range`_ support for MFC/ATL collection and string typ…
65 If the ``<boost/range/mfc.hpp>`` is included before or after `Boost.Range`_ headers,
66 the MFC collections and strings become models of Range.
71 ``Range`` Traversal Category ``range_reference<Range>::type``
77 ``CMap<K,AK,M,AM>`` Forward ``Range::CPair&``
111 ``CMapStringToString`` Forward ``Range::CPair&``
119 Other `Boost.Range`_ metafunctions are defined by the following.
120 Let ``Range`` be any type listed above and ``ReF`` be the same as ``range_reference<Range>::type``.
121 ``range_value<Range>::type`` is the same as ``remove_reference<remove_const<Ref>::type>::type``,
[all …]
Dmfc_atl.qbk12 …ed by Shunsuke Sogame. This header adapts MFC and ATL containers to the appropriate Range concepts.
24 Boost.Range MFC/ATL Extension provides Boost.Range support for MFC/ATL collection and string types.
48 …c.hpp>` is included before or after Boost.Range headers, the MFC collections and strings become mo…
51 [[Range] [Traversal Category] [`range_reference<Range>::type`]]
54 [[`CMap<K,AK,M,AM>`] [__forward_range__] [`Range::CPair&`]]
71 [[`CMapStringToString`] [__forward_range__] [`Range::CPair&`]]
76Range metafunctions are defined by the following. Let `Range` be any type listed above and `Ref` b…
85 …l.hpp>` is included before or after Boost.Range headers, the ATL collections and strings become mo…
88 [[Range] [Traversal Category] [`range_reference<Range>::type`]]
96 [[`CAtlMap<K,V,KT,VT>`] [__forward_range__] [`Range::CPair&`]]
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/val/
Dval_layout_test.cpp50 struct Range { struct
51 explicit Range(bool inverse = false) : inverse_(inverse) {} in Range() argument
121 pred_type All = Range<0, kRangeEnd>();
125 ::testing::Combine(::testing::Range((int)0, (int)getInstructions().size()),
132 …(std::make_tuple(std::string("OpCapability") , Equals<0> , Range<0, 2>())
135 …ke_tuple(std::string("OpMemoryModel") , Equals<3> , Range<1, kRangeEnd>())
137 … , std::make_tuple(std::string("OpExecutionMode ") , Range<5, 6>() , All)
138 … , std::make_tuple(std::string("OpExecutionModeId") , Range<5, 6>() , All)
139 …, std::make_tuple(std::string("OpSource ") , Range<7, 11>() , Range<8, kRa…
140 … , std::make_tuple(std::string("OpSourceContinued ") , Range<7, 11>() , All)
[all …]
/third_party/skia/third_party/externals/spirv-tools/test/val/
Dval_layout_test.cpp50 struct Range { struct
51 explicit Range(bool inverse = false) : inverse_(inverse) {} in Range() function
121 pred_type All = Range<0, kRangeEnd>();
125 ::testing::Combine(::testing::Range((int)0, (int)getInstructions().size()),
132 …(std::make_tuple(std::string("OpCapability") , Equals<0> , Range<0, 2>())
135 …ke_tuple(std::string("OpMemoryModel") , Equals<3> , Range<1, kRangeEnd>())
137 … , std::make_tuple(std::string("OpExecutionMode ") , Range<5, 6>() , All)
138 … , std::make_tuple(std::string("OpExecutionModeId") , Range<5, 6>() , All)
139 …, std::make_tuple(std::string("OpSource ") , Range<7, 11>() , Range<8, kRa…
140 … , std::make_tuple(std::string("OpSourceContinued ") , Range<7, 11>() , All)
[all …]
/third_party/boost/boost/geometry/views/
Dcloseable_view.hpp42 template <typename Range>
46 explicit inline closing_view(Range& r) in closing_view()
50 typedef closing_iterator<Range> iterator;
51 typedef closing_iterator<Range const> const_iterator;
59 Range& m_range;
80 template <typename Range, closure_selector Close>
86 template <typename Range>
87 struct closeable_view<Range, closed>
89 typedef identity_view<Range> type;
93 template <typename Range>
[all …]
/third_party/abseil-cpp/absl/algorithm/
Dequal_benchmark.cc82 ->Range(kMinBenchmarkSize, kMaxBenchmarkSize);
84 ->Range(kMinBenchmarkSize, kMaxBenchmarkSize);
86 ->Range(kMinBenchmarkSize, kMaxBenchmarkSize);
88 ->Range(kMinBenchmarkSize, kMaxBenchmarkSize);
91 ->Range(kMinBenchmarkSize, kMaxBenchmarkSize);
93 ->Range(kMinBenchmarkSize, kMaxBenchmarkSize);
95 ->Range(kMinBenchmarkSize, kMaxBenchmarkSize);
97 ->Range(kMinBenchmarkSize, kMaxBenchmarkSize);
100 ->Range(kMinBenchmarkSize, kMaxBenchmarkSize);
102 ->Range(kMinBenchmarkSize, kMaxBenchmarkSize);
[all …]
/third_party/skia/third_party/externals/abseil-cpp/absl/algorithm/
Dequal_benchmark.cc82 ->Range(kMinBenchmarkSize, kMaxBenchmarkSize);
84 ->Range(kMinBenchmarkSize, kMaxBenchmarkSize);
86 ->Range(kMinBenchmarkSize, kMaxBenchmarkSize);
88 ->Range(kMinBenchmarkSize, kMaxBenchmarkSize);
91 ->Range(kMinBenchmarkSize, kMaxBenchmarkSize);
93 ->Range(kMinBenchmarkSize, kMaxBenchmarkSize);
95 ->Range(kMinBenchmarkSize, kMaxBenchmarkSize);
97 ->Range(kMinBenchmarkSize, kMaxBenchmarkSize);
100 ->Range(kMinBenchmarkSize, kMaxBenchmarkSize);
102 ->Range(kMinBenchmarkSize, kMaxBenchmarkSize);
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/GSYM/
DFunctionInfo.h89 AddressRange Range; member
95 : Range(Addr, Addr + Size), Name(N) {}
172 uint64_t startAddress() const { return Range.Start; } in startAddress()
173 uint64_t endAddress() const { return Range.End; } in endAddress()
174 uint64_t size() const { return Range.size(); } in size()
175 void setStartAddress(uint64_t Addr) { Range.Start = Addr; } in setStartAddress()
176 void setEndAddress(uint64_t Addr) { Range.End = Addr; } in setEndAddress()
177 void setSize(uint64_t Size) { Range.End = Range.Start + Size; } in setSize()
180 Range = {0, 0}; in clear()
188 return LHS.Range == RHS.Range && LHS.Name == RHS.Name &&
[all …]
/third_party/boost/boost/geometry/iterators/
Dclosing_iterator.hpp35 template <typename Range>
39 closing_iterator<Range>,
40 typename boost::range_value<Range>::type const,
42 typename boost::range_reference<Range const>::type,
43 typename boost::range_difference<Range>::type
49 closing_iterator<Range>,
50 typename boost::range_value<Range>::type const,
52 typename boost::range_reference<Range const>::type,
53 typename boost::range_difference<Range>::type
61 explicit inline closing_iterator(Range& range) in closing_iterator()
[all …]
Dever_circling_iterator.hpp97 template <typename Range>
101 ever_circling_range_iterator<Range>,
102 typename boost::range_value<Range>::type const,
104 typename boost::range_reference<Range const>::type,
105 typename boost::range_difference<Range>::type
111 ever_circling_range_iterator<Range>,
112 typename boost::range_value<Range>::type const,
114 typename boost::range_reference<Range const>::type,
115 typename boost::range_difference<Range>::type
120 explicit inline ever_circling_range_iterator(Range& range) in ever_circling_range_iterator()
[all …]
/third_party/boost/boost/geometry/algorithms/detail/
Das_range.hpp34 template <typename GeometryTag, typename Geometry, typename Range, bool IsConst>
37 static inline typename add_const_if_c<IsConst, Range>::type& get( in get()
45 template <typename Geometry, typename Range, bool IsConst>
46 struct as_range<polygon_tag, Geometry, Range, IsConst>
48 static inline typename add_const_if_c<IsConst, Range>::type& get( in get()
69 template <typename Range, typename Geometry>
70 inline Range& as_range(Geometry& input) in as_range()
76 Range, in as_range()
88 template <typename Range, typename Geometry>
89 inline Range const& as_range(Geometry const& input) in as_range()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/GSYM/
DRange.cpp20 void AddressRanges::insert(AddressRange Range) { in insert() argument
21 if (Range.size() == 0) in insert()
24 auto It = llvm::upper_bound(Ranges, Range); in insert()
26 while (It2 != Ranges.end() && It2->Start < Range.End) in insert()
29 Range.End = std::max(Range.End, It2[-1].End); in insert()
32 if (It != Ranges.begin() && Range.Start < It[-1].End) in insert()
33 It[-1].End = std::max(It[-1].End, Range.End); in insert()
35 Ranges.insert(It, Range); in insert()
45 bool AddressRanges::contains(AddressRange Range) const { in contains()
46 if (Range.size() == 0) in contains()
[all …]
/third_party/skia/third_party/externals/tint/src/
Dsource.h93 class Range {
96 inline Range() = default;
100 inline constexpr explicit Range(const Location& loc) in Range() function
106 inline constexpr Range(const Location& b, const Location& e) in Range() function
112 inline Range operator+(size_t n) const {
113 return Range{{begin.line, begin.column + n}, {end.line, end.column + n}};
119 inline bool operator==(const Range& rhs) const {
126 inline bool operator!=(const Range& rhs) const { return !(*this == rhs); }
139 inline explicit Source(const Range& rng) : range(rng) {} in Source()
143 inline explicit Source(const Location& loc) : range(Range(loc)) {} in Source()
[all …]
/third_party/boost/boost/geometry/core/
Dmutable_range.hpp36 template <typename Range>
39 typedef typename boost::remove_reference<Range>::type& type;
47 template <typename Range>
50 static inline void apply(typename rvalue_type<Range>::type range) in apply()
61 template <typename Range>
66 typename boost::remove_reference<Range>::type
69 static inline void apply(typename rvalue_type<Range>::type range, in apply()
81 template <typename Range>
84 static inline void apply(typename rvalue_type<Range>::type range, in apply()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DSTLExtras.h312 make_filter_range(RangeT &&Range, PredicateT Pred) { in make_filter_range() argument
315 return make_range(FilterIteratorT(std::begin(std::forward<RangeT>(Range)), in make_filter_range()
316 std::end(std::forward<RangeT>(Range)), in make_filter_range()
318 FilterIteratorT(std::end(std::forward<RangeT>(Range)))); in make_filter_range()
473 bool all_of(R &&Range, UnaryPredicate P) {
474 return std::all_of(std::begin(Range), std::end(Range), P);
480 bool any_of(R &&Range, UnaryPredicate P) {
481 return std::any_of(std::begin(Range), std::end(Range), P);
487 bool none_of(R &&Range, UnaryPredicate P) {
488 return std::none_of(std::begin(Range), std::end(Range), P);
[all …]
/third_party/boost/boost/geometry/algorithms/
Dappend.hpp71 template <typename Geometry, typename Range>
74 typedef typename boost::range_value<Range>::type point_type;
76 static inline void apply(Geometry& geometry, Range const& range, in apply()
79 for (typename boost::range_iterator<Range const>::type in apply()
116 template <typename Polygon, typename Range>
123 static inline void apply(Polygon& polygon, Range const& range, in apply()
129 append_range<ring_type, Range>::apply( in apply()
135 append_range<ring_type, Range>::apply( in apply()
175 template <typename Tag, typename Geometry, typename Range>
177 : detail::append::append_no_action<Geometry, Range>
[all …]

12345678910>>...38