Home
last modified time | relevance | path

Searched refs:ConstRange (Results 1 – 5 of 5) sorted by relevance

/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/container/
H A Drbtree.d810 alias ConstRange = RBRange!(const(RBNode)*); /// Ditto variable
1012 ConstRange opSlice() const in opSlice()
1014 return ConstRange(_begin, _end); in opSlice()
1539 ConstRange upperBound(Elem e) const in upperBound()
1541 return ConstRange(_firstGreater(e), _end); in upperBound()
1562 ConstRange lowerBound(Elem e) const in lowerBound()
1564 return ConstRange(_begin, _firstGreaterEqual(e)); in lowerBound()
1713 …static if (is(typeof((){FormatSpec!(char) fmt; formatValue((const(char)[]) {}, ConstRange.init, fm…
H A Darray.d475 alias ConstRange = RangeT!(const Array); variable
575 ConstRange opSlice() const in opSlice()
599 ConstRange opSlice(size_t i, size_t j) const in opSlice()
1465 static assert(is(Array!int.ConstRange));
1486 test!(A, const A.Range, const int, A.ConstRange);
1488 test!(const A, A.ConstRange, const int, A.ConstRange);
1489 test!(const A, const A.ConstRange, const int, A.ConstRange);
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/container/
H A Darray.d636 alias ConstRange = RangeT!(const Array);
733 ConstRange opSlice() const
757 ConstRange opSlice(size_t i, size_t j) const
1651 static assert(is(Array!int.ConstRange));
1672 test!(A, const A.Range, const int, A.ConstRange);
1674 test!(const A, A.ConstRange, const int, A.ConstRange);
1675 test!(const A, const A.ConstRange, const int, A.ConstRange);
H A Drbtree.d818 alias ConstRange = RBRange!(const(RBNode)*); /// Ditto
1023 ConstRange opSlice() const
1025 return ConstRange(_begin, _end);
1679 ConstRange upperBound(Elem e) const
1681 return ConstRange(_firstGreater(e), _end);
1702 ConstRange lowerBound(Elem e) const
1704 return ConstRange(_begin, _firstGreaterEqual(e));
1853 …static if (is(typeof((){FormatSpec!(char) fmt; formatValue((const(char)[]) {}, ConstRange.init, fm…
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/ELF/
H A DObject.h1030 using ConstRange = iterator_range<pointee_iterator< variable
1059 ConstRange<SectionBase> sections() const { in sections()
1077 ConstRange<Segment> segments() const { return make_pointee_range(Segments); } in segments()