| /openbsd-src/gnu/llvm/compiler-rt/lib/xray/ |
| H A D | xray_buffer_queue.h | 80 template <class T> class Iterator { 86 Iterator &operator++() { 94 Iterator operator++(int) { 95 Iterator C = *this; 104 Iterator(BufferRep *Root, size_t O, size_t M) XRAY_NEVER_INSTRUMENT in Iterator() function 115 Iterator() = default; 116 Iterator(const Iterator &) = default; 117 Iterator(Iterator &&) = default; 118 Iterator &operator=(const Iterator &) = default; 119 Iterator &operator=(Iterator &&) = default; [all …]
|
| H A D | xray_segmented_array.h | 81 template <class U> class Iterator { 87 Iterator(Segment *IS, uint64_t Off, uint64_t S) XRAY_NEVER_INSTRUMENT in Iterator() function 91 Iterator(const Iterator &) NOEXCEPT XRAY_NEVER_INSTRUMENT = default; 92 Iterator() NOEXCEPT XRAY_NEVER_INSTRUMENT = default; 93 Iterator(Iterator &&) NOEXCEPT XRAY_NEVER_INSTRUMENT = default; 94 Iterator &operator=(const Iterator &) XRAY_NEVER_INSTRUMENT = default; 95 Iterator &operator=(Iterator &&) XRAY_NEVER_INSTRUMENT = default; 96 ~Iterator() XRAY_NEVER_INSTRUMENT = default; 98 Iterator &operator++() XRAY_NEVER_INSTRUMENT { 113 Iterator &operator--() XRAY_NEVER_INSTRUMENT { [all …]
|
| H A D | xray_log_interface.cpp | 53 void __xray_log_set_buffer_iterator(XRayBuffer (*Iterator)(XRayBuffer)) in __xray_log_set_buffer_iterator() 56 reinterpret_cast<uintptr_t>(Iterator), memory_order_release); in __xray_log_set_buffer_iterator() 200 auto Iterator = reinterpret_cast<XRayBuffer (*)(XRayBuffer)>( in __xray_log_process_buffers() local 202 auto Buffer = (*Iterator)(XRayBuffer{nullptr, 0}); in __xray_log_process_buffers() 206 Buffer = (*Iterator)(Buffer); in __xray_log_process_buffers()
|
| /openbsd-src/gnu/llvm/llvm/lib/CodeGen/ |
| H A D | AllocationOrder.h | 44 class Iterator final { 49 Iterator(const AllocationOrder &AO, int Pos) : AO(AO), Pos(Pos) {} in Iterator() function 64 Iterator &operator++() { 72 bool operator==(const Iterator &Other) const { 77 bool operator!=(const Iterator &Other) const { return !(*this == Other); } 95 Iterator begin() const { in begin() 96 return Iterator(*this, -(static_cast<int>(Hints.size()))); in begin() 99 Iterator end() const { return Iterator(*this, IterationLimit); } in end() 101 Iterator getOrderLimitEnd(unsigned OrderLimit) const { in getOrderLimitEnd() 105 Iterator Ret(*this, in getOrderLimitEnd()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/ |
| H A D | MachineInstrBundleIterator.h | 53 template <class Iterator> static Iterator getBundleBegin(Iterator I) { 61 template <class Iterator> static Iterator getBundleFinal(Iterator I) { 69 template <class Iterator> static void increment(Iterator &I) { 74 template <class Iterator> static void decrement(Iterator &I) { 81 template <class Iterator> static Iterator getBundleBegin(Iterator I) { 88 template <class Iterator> static Iterator getBundleFinal(Iterator I) { 95 template <class Iterator> static void increment(Iterator &I) { 100 template <class Iterator> static void decrement(Iterator &I) {
|
| /openbsd-src/gnu/gcc/libstdc++-v3/include/ext/pb_ds/detail/bin_search_tree_/ |
| H A D | node_iterators.hpp | 61 Iterator, \ 67 class Iterator, 167 Iterator, \ 173 class Iterator, 189 typedef Iterator value_type; 192 typedef Iterator reference; 195 typedef Iterator const_reference; 211 inline Iterator 214 return (Iterator(PB_DS_TREE_CONST_NODE_ITERATOR_CLASS_C_DEC::m_p_nd)); in operator *()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/ADT/ |
| H A D | DenseSet.h | 111 class Iterator { 123 Iterator() = default; 124 Iterator(const typename MapTy::iterator &i) : I(i) {} in Iterator() function 131 Iterator& operator++() { ++I; return *this; } 132 Iterator operator++(int) { auto T = *this; ++I; return T; } 133 friend bool operator==(const Iterator &X, const Iterator &Y) { 136 friend bool operator!=(const Iterator &X, const Iterator &Y) { 144 friend class Iterator; variable 154 ConstIterator(const Iterator &B) : I(B.I) {} in ConstIterator() 170 using iterator = Iterator; [all …]
|
| /openbsd-src/gnu/llvm/libcxx/include/ |
| H A D | iterator | 28 template<class Iterator> 217 template <class Iterator> 219 : public iterator<typename iterator_traits<Iterator>::iterator_category, // until C++17 220 typename iterator_traits<Iterator>::value_type, 221 typename iterator_traits<Iterator>::difference_type, 222 typename iterator_traits<Iterator>::pointer, 223 typename iterator_traits<Iterator>::reference> 226 Iterator current; 228 using iterator_type = Iterator; 230 …using iterator_category = typename iterator_traits<Iterator>::iterator_category; // since C++17, u… [all …]
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-objdump/ |
| H A D | llvm-objdump.h | 73 : Predicate(std::move(P)), Iterator(I), End(E) { in SectionFilterIterator() 76 const llvm::object::SectionRef &operator*() const { return *Iterator; } 78 ++Iterator; 83 return Iterator != Other.Iterator; 88 while (Iterator != End && !Predicate(*Iterator)) { in ScanPredicate() 89 ++Iterator; in ScanPredicate() 93 llvm::object::section_iterator Iterator; variable
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.pt/ |
| H A D | crash36.C | 4 template<class Iterator> struct iterator_traits { 5 typedef typename Iterator::iterator_category 15 template <class Iterator> 17 iterator<typename iterator_traits<Iterator>::iterator_category> { 19 Iterator current;
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/Transforms/IPO/ |
| H A D | SampleContextTracker.h | 147 class Iterator : public llvm::iterator_facade_base< 148 Iterator, std::forward_iterator_tag, ContextTrieNode *, 153 explicit Iterator() = default; 154 explicit Iterator(ContextTrieNode *Node) { NodeQueue.push(Node); } in Iterator() function 155 Iterator &operator++() { 164 bool operator==(const Iterator &Other) const { 178 Iterator begin() { return Iterator(&RootContext); } in begin() 179 Iterator end() { return Iterator(); } in end()
|
| /openbsd-src/gnu/gcc/libstdc++-v3/include/ext/pb_ds/detail/pat_trie_/ |
| H A D | node_iterators.hpp | 64 Iterator, \ 75 Iterator, \ 85 class Iterator, 262 class Iterator, 275 typedef Iterator iterator; 293 typedef Iterator value_type; 316 return Iterator(base_type::m_p_nd); in operator *()
|
| /openbsd-src/gnu/llvm/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_list.h | 29 friend class Iterator; member 149 typedef IteratorBase<Item> Iterator; typedef 152 Iterator begin() { return Iterator(first_); } in begin() 153 Iterator end() { return Iterator(0); } in end()
|
| H A D | sanitizer_bitvector.h | 87 class Iterator { 89 Iterator() { } in Iterator() function 90 explicit Iterator(const BasicBitVector &bv) : bv_(bv) {} in Iterator() function 273 class Iterator { 275 Iterator() { } in Iterator() function 276 explicit Iterator(const TwoLevelBitVector &bv) : bv_(bv), i0_(0), i1_(0) { in Iterator() function 294 it1_ = typename BV::Iterator(bv_.l1_[i0_]); in next() 303 it2_ = typename BV::Iterator(bv_.l2_[i0_][i1_]); in next() 320 typename BV::Iterator it1_, it2_;
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/CodeView/ |
| H A D | DebugCrossExSubsection.h | 27 using Iterator = ReferenceArray::Iterator; variable 40 Iterator begin() const { return References.begin(); } in begin() 41 Iterator end() const { return References.end(); } in end()
|
| H A D | DebugCrossImpSubsection.h | 50 using Iterator = ReferenceArray::Iterator; 63 Iterator begin() const { return References.begin(); } 64 Iterator end() const { return References.end(); }
|
| H A D | DebugChecksumsSubsection.h | 53 using Iterator = FileChecksumArray::Iterator; 68 Iterator begin() const { return Checksums.begin(); } 69 Iterator end() const { return Checksums.end(); }
|
| H A D | DebugInlineeLinesSubsection.h | 62 using Iterator = LinesArray::Iterator; 79 Iterator begin() const { return Lines.begin(); } 80 Iterator end() const { return Lines.end(); }
|
| H A D | DebugLinesSubsection.h | 83 using Iterator = LineInfoArray::Iterator; variable 94 Iterator begin() const { return LinesAndColumns.begin(); } in begin() 95 Iterator end() const { return LinesAndColumns.end(); } in end()
|
| /openbsd-src/gnu/usr.bin/perl/cpan/Test-Harness/t/ |
| H A D | callbacks.t | 10 use TAP::Parser::Iterator::Array; 40 my $iterator = TAP::Parser::Iterator::Array->new( [ split /\n/ => $tap ] ); 82 $iterator = TAP::Parser::Iterator::Array->new( [ split /\n/ => $tap ] ); 107 $iterator = TAP::Parser::Iterator::Array->new( [ split /\n/ => $tap ] );
|
| H A D | premature-bailout.t | 10 use TAP::Parser::Iterator::Array; 31 { iterator => TAP::Parser::Iterator::Array->new( tap_to_lines($tap) ), 110 TAP::Parser::Iterator::Array->new( [ split( /\n/, $more_tap ) ] ),
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/ProfileData/ |
| H A D | RawMemProfReader.h | 61 using Iterator = InstrProfIterator<GuidMemProfRecordPair, RawMemProfReader>; variable 62 Iterator end() { return Iterator(); } in end() 63 Iterator begin() { in begin() 65 return Iterator(this); in begin()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/Support/ |
| H A D | BinaryStreamArray.h | 96 typedef VarStreamArrayIterator<ValueType, Extractor> Iterator; typedef 108 Iterator begin(bool *HadError = nullptr) const { 109 return Iterator(*this, E, Skew, nullptr); 117 Iterator end() const { return Iterator(E); } in end() 134 Iterator at(uint32_t Offset) const { in at() 135 return Iterator(*this, E, Offset, nullptr); in at() 263 typedef FixedStreamArrayIterator<T> Iterator; typedef
|
| /openbsd-src/gnu/llvm/clang/lib/AST/ |
| H A D | ItaniumCXXABI.cpp | 64 struct Iterator struct 65 : llvm::iterator_adaptor_base<Iterator, BindingArray::const_iterator, 68 Iterator(BindingArray::const_iterator It) : iterator_adaptor_base(It) {} in Iterator() function 73 Iterator begin() const { return Iterator(Bindings.begin()); } in begin() 74 Iterator end() const { return Iterator(Bindings.end()); } in end()
|
| /openbsd-src/gnu/llvm/clang/include/clang/AST/ |
| H A D | AttrIterator.h | 34 using Iterator = typename Container::const_iterator; variable 43 mutable Iterator Current; 50 void AdvanceToNext(Iterator I) const { in AdvanceToNext() 63 explicit specific_attr_iterator(Iterator i) : Current(i) {} in specific_attr_iterator()
|