Home
last modified time | relevance | path

Searched refs:const_iterator (Results 1 – 25 of 803) sorted by relevance

12345678910>>...33

/freebsd/contrib/llvm-project/compiler-rt/lib/orc/
H A Dinterval_set.h35 class const_iterator {
44 const_iterator() = default;
47 const_iterator &operator++() { ++I; return *this; }
48 const_iterator operator++(int) { auto Tmp = I; ++I; return Tmp; }
49 friend bool operator==(const const_iterator &LHS,
50 const const_iterator &RHS) {
53 friend bool operator!=(const const_iterator &LHS,
54 const const_iterator &RHS) {
58 const_iterator(typename ImplMap::const_iterator I) : I(std::move(I)) {} in const_iterator() function
59 typename ImplMap::const_iterator I;
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__chrono/
H A Dtzdb_list.h53 using const_iterator = forward_list<tzdb>::const_iterator; variable
57 …_LIBCPP_HIDE_FROM_ABI const_iterator erase_after(const_iterator __p) { return __erase_after(__p); } in erase_after()
59 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI const_iterator begin() const noexcept { return __begin(); } in begin()
60 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI const_iterator end() const noexcept { return __end(); } in end()
62 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI const_iterator cbegin() const noexcept { return __cbegin(); } in cbegin()
63 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI const_iterator cend() const noexcept { return __cend(); } in cend()
70 _LIBCPP_EXPORTED_FROM_ABI const_iterator __erase_after(const_iterator __p);
72 [[nodiscard]] _LIBCPP_EXPORTED_FROM_ABI const_iterator __begin() const noexcept;
73 [[nodiscard]] _LIBCPP_EXPORTED_FROM_ABI const_iterator __end() const noexcept;
75 [[nodiscard]] _LIBCPP_EXPORTED_FROM_ABI const_iterator __cbegin() const noexcept;
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Frontend/
H A DTextDiagnosticBuffer.h29 using const_iterator = DiagList::const_iterator; variable
41 const_iterator err_begin() const { return Errors.begin(); } in err_begin()
42 const_iterator err_end() const { return Errors.end(); } in err_end()
44 const_iterator warn_begin() const { return Warnings.begin(); } in warn_begin()
45 const_iterator warn_end() const { return Warnings.end(); } in warn_end()
47 const_iterator remark_begin() const { return Remarks.begin(); } in remark_begin()
48 const_iterator remark_end() const { return Remarks.end(); } in remark_end()
50 const_iterator note_begin() const { return Notes.begin(); } in note_begin()
51 const_iterator note_end() const { return Notes.end(); } in note_end()
/freebsd/contrib/llvm-project/llvm/include/llvm/XRay/
H A DGraph.h128 typename BaseIt = typename NeighborSetT::const_iterator,
201 using const_iterator = NeighborEdgeIteratorT<true, isOut>; variable
219 const_iterator cbegin() const { in cbegin()
222 return const_iterator(); in cbegin()
223 return const_iterator(It->second.begin(), &M, A); in cbegin()
226 const_iterator begin() const { return cbegin(); } in begin()
234 const_iterator cend() const { in cend()
237 return const_iterator(); in cend()
238 return const_iterator(It->second.end(), &M, A); in cend()
241 const_iterator end() const { return cend(); } in end()
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__cxx03/ext/
H A Dhash_set39 typedef /unspecified/ const_iterator;
61 const_iterator begin() const;
62 const_iterator end() const;
68 void erase(const_iterator position);
70 void erase(const_iterator first, const_iterator last);
79 const_iterator find(const key_type& k) const;
82 pair<const_iterator, const_iterator> equal_range(const key_type& k) const;
125 typedef /unspecified/ const_iterator;
147 const_iterator begin() const;
148 const_iterator end() const;
[all …]
/freebsd/contrib/llvm-project/libcxx/include/ext/
H A Dhash_set39 typedef /unspecified/ const_iterator;
61 const_iterator begin() const;
62 const_iterator end() const;
68 void erase(const_iterator position);
70 void erase(const_iterator first, const_iterator last);
79 const_iterator find(const key_type& k) const;
82 pair<const_iterator, const_iterator> equal_range(const key_type& k) const;
125 typedef /unspecified/ const_iterator;
147 const_iterator begin() const;
148 const_iterator end() const;
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__cxx03/
H A Dset39 typedef implementation-defined const_iterator;
41 typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
92 const_iterator begin() const noexcept;
94 const_iterator end() const noexcept;
101 const_iterator cbegin() const noexcept;
102 const_iterator cend() const noexcept;
115 iterator emplace_hint(const_iterator position, Args&&... args);
118 iterator insert(const_iterator position, const value_type& v);
119 iterator insert(const_iterator position, value_type&& v);
126 node_type extract(const_iterator position); // C++17
[all …]
H A Dforward_list34 typedef <details> const_iterator;
76 const_iterator begin() const noexcept;
78 const_iterator end() const noexcept;
80 const_iterator cbegin() const noexcept;
81 const_iterator cend() const noexcept;
84 const_iterator before_begin() const noexcept;
85 const_iterator cbefore_begin() const noexcept;
102 iterator emplace_after(const_iterator p, Args&&... args);
103 iterator insert_after(const_iterator p, const value_type& v);
104 iterator insert_after(const_iterator p, value_type&& v);
[all …]
H A Dunordered_set43 typedef /unspecified/ const_iterator;
113 const_iterator begin() const noexcept;
114 const_iterator end() const noexcept;
115 const_iterator cbegin() const noexcept;
116 const_iterator cend() const noexcept;
121 iterator emplace_hint(const_iterator position, Args&&... args);
124 iterator insert(const_iterator hint, const value_type& obj);
125 iterator insert(const_iterator hint, value_type&& obj);
132 node_type extract(const_iterator position); // C++17
135 iterator insert(const_iterator hint, node_type&& nh); // C++17
[all …]
H A Dmap39 typedef implementation-defined const_iterator;
41 typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
105 const_iterator begin() const noexcept;
107 const_iterator end() const noexcept;
114 const_iterator cbegin() const noexcept;
115 const_iterator cend() const noexcept;
135 iterator emplace_hint(const_iterator position, Args&&... args);
140 iterator insert(const_iterator position, const value_type& v);
141 iterator insert(const_iterator position, value_type&& v); // C++17
143 iterator insert(const_iterator position, P&& p);
[all …]
/freebsd/contrib/llvm-project/libcxx/include/
H A Dvector30 typedef implementation-defined const_iterator;
36 typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
70 const_iterator begin() const noexcept;
72 const_iterator end() const noexcept;
79 const_iterator cbegin() const noexcept;
80 const_iterator cend() const noexcept;
112 template <class... Args> iterator emplace(const_iterator position, Args&&... args);
113 iterator insert(const_iterator position, const value_type& x);
114 iterator insert(const_iterator position, value_type&& x);
115 iterator insert(const_iterator position, size_type n, const value_type& x);
[all …]
H A Dset39 typedef implementation-defined const_iterator;
41 typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
92 const_iterator begin() const noexcept;
94 const_iterator end() const noexcept;
101 const_iterator cbegin() const noexcept;
102 const_iterator cend() const noexcept;
115 iterator emplace_hint(const_iterator position, Args&&... args);
118 iterator insert(const_iterator position, const value_type& v);
119 iterator insert(const_iterator position, value_type&& v);
126 node_type extract(const_iterator position); // C++17
[all …]
H A Dforward_list34 typedef <details> const_iterator;
76 const_iterator begin() const noexcept;
78 const_iterator end() const noexcept;
80 const_iterator cbegin() const noexcept;
81 const_iterator cend() const noexcept;
84 const_iterator before_begin() const noexcept;
85 const_iterator cbefore_begin() const noexcept;
102 iterator emplace_after(const_iterator p, Args&&... args);
103 iterator insert_after(const_iterator p, const value_type& v);
104 iterator insert_after(const_iterator p, value_type&& v);
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugAbbrev.h30 using const_iterator = variable
31 std::vector<DWARFAbbreviationDeclaration>::const_iterator;
43 const_iterator begin() const { in begin()
47 const_iterator end() const { in end()
64 mutable DWARFAbbreviationDeclarationSetMap::const_iterator PrevAbbrOffsetPos;
76 DWARFAbbreviationDeclarationSetMap::const_iterator begin() const { in begin()
81 DWARFAbbreviationDeclarationSetMap::const_iterator end() const { in end()
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/
H A DCallGraph.h83 using const_iterator = FunctionMapTy::const_iterator; variable
89 const_iterator begin() const { return FunctionMap.begin(); } in begin()
90 const_iterator end() const { return FunctionMap.end(); } in end()
103 using const_nodes_iterator = llvm::SetVector<CallGraphNode *>::const_iterator;
171 using const_iterator = SmallVectorImpl<CallRecord>::const_iterator; variable
176 const_iterator begin() const { return CalledFunctions.begin(); } in begin()
177 const_iterator end() const { return CalledFunctions.end(); } in end()
183 llvm::iterator_range<const_iterator> callees() const { in callees()
253 using ChildIteratorType = NodeType::const_iterator;
267 CGGetValue(clang::CallGraph::const_iterator::value_type &P) {
[all …]
/freebsd/contrib/llvm-project/libcxx/src/experimental/
H A Dtzdb_list.cpp23 _LIBCPP_EXPORTED_FROM_ABI tzdb_list::const_iterator tzdb_list::__erase_after(const_iterator __p) { in __erase_after()
27 [[nodiscard]] _LIBCPP_EXPORTED_FROM_ABI tzdb_list::const_iterator tzdb_list::__begin() const noexce… in __begin()
30 [[nodiscard]] _LIBCPP_EXPORTED_FROM_ABI tzdb_list::const_iterator tzdb_list::__end() const noexcept… in __end()
34 [[nodiscard]] _LIBCPP_EXPORTED_FROM_ABI tzdb_list::const_iterator tzdb_list::__cbegin() const noexc… in __cbegin()
37 [[nodiscard]] _LIBCPP_EXPORTED_FROM_ABI tzdb_list::const_iterator tzdb_list::__cend() const noexcep… in __cend()
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DCoalescingBitVector.h47 using UnderlyingIterator = typename MapT::const_iterator;
235 class const_iterator {
287 const_iterator(UnderlyingIterator MapIt) : MapIterator(MapIt) { in const_iterator() function
292 const_iterator() { setToEnd(); } in const_iterator() function
294 bool operator==(const const_iterator &RHS) const {
302 bool operator!=(const const_iterator &RHS) const {
308 const_iterator &operator++() { // Pre-increment (++It).
320 const_iterator operator++(int) { // Post-increment (It++).
321 const_iterator tmp = *this;
346 const_iterator begin() const { return const_iterator(Intervals.begin()); } in begin()
[all …]
H A DSmallSet.h37 using SetIterTy = typename std::set<T, C>::const_iterator;
38 using VecIterTy = typename SmallVector<T, N>::const_iterator;
150 using const_iterator = SmallSetIterator<T, N, C>; variable
182 std::pair<const_iterator, bool> insert(const T &V) { return insertImpl(V); } in insert()
184 std::pair<const_iterator, bool> insert(T &&V) { in insert()
214 const_iterator begin() const { in begin()
220 const_iterator end() const { in end()
237 std::pair<const_iterator, bool> insertImpl(ArgType &&V) { in insertImpl()
242 return {const_iterator(I), Inserted}; in insertImpl()
247 return {const_iterator(I), false}; in insertImpl()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DCallGraph.h98 using const_iterator = FunctionMapTy::const_iterator; variable
108 inline const_iterator begin() const { return FunctionMap.begin(); } in begin()
109 inline const_iterator end() const { return FunctionMap.end(); } in end()
113 const_iterator I = FunctionMap.find(F);
120 const_iterator I = FunctionMap.find(F);
190 using const_iterator = std::vector<CallRecord>::const_iterator; variable
197 inline const_iterator begin() const { return CalledFunctions.begin(); } in begin()
198 inline const_iterator end() const { return CalledFunctions.end(); } in end()
348 using const_iterator = CallGraph::const_iterator; variable
355 inline const_iterator begin() const { return G->begin(); } in begin()
[all …]
H A DIR2Vec.h99 using const_iterator = typename std::vector<double>::const_iterator; member
103 const_iterator begin() const { return Data.begin(); } in begin()
104 const_iterator end() const { return Data.end(); } in end()
105 const_iterator cbegin() const { return Data.cbegin(); } in cbegin()
106 const_iterator cend() const { return Data.cend(); } in cend()
191 using const_iterator = VocabVector::const_iterator; variable
192 const_iterator begin() const { in begin()
197 const_iterator cbegin() const { in cbegin()
202 const_iterator end() const { in end()
207 const_iterator cend() const { in cend()
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DFileSpecList.h30 typedef collection::const_iterator const_iterator; typedef
31 const_iterator begin() const { return m_files.begin(); } in begin()
32 const_iterator end() const { return m_files.end(); } in end()
94 typedef collection::const_iterator const_iterator; typedef
244 const_iterator begin() const { return m_files.begin(); } in begin()
245 const_iterator end() const { return m_files.end(); } in end()
247 llvm::iterator_range<const_iterator> files() const { in files()
/freebsd/contrib/llvm-project/llvm/utils/TableGen/GlobalISel/
H A DGIMatchDag.h
/freebsd/contrib/llvm-project/libcxx/src/experimental/include/tzdb/
H A Dtzdb_list_private.h58 using const_iterator = tzdb_list::const_iterator; variable
67 const_iterator __erase_after(const_iterator __p) { in __erase_after()
76 const_iterator __begin() const noexcept { in __begin()
82 const_iterator __end() const noexcept { in __end()
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/GlobalISel/
H A DCodeExpansions.h21 using const_iterator = StringMap<std::string>::const_iterator;
41 const_iterator begin() const { return Expansions.begin(); } in begin()
42 const_iterator end() const { return Expansions.end(); } in end()
43 const_iterator find(StringRef Variable) const { in find()
/freebsd/contrib/llvm-project/libcxx/include/__format/
H A Dformat_parse_context.h30 using const_iterator = typename basic_string_view<_CharT>::const_iterator; variable
31 using iterator = const_iterator;
44 _LIBCPP_HIDE_FROM_ABI constexpr const_iterator begin() const noexcept { return __begin_; } in begin()
45 _LIBCPP_HIDE_FROM_ABI constexpr const_iterator end() const noexcept { return __end_; } in end()
46 _LIBCPP_HIDE_FROM_ABI constexpr void advance_to(const_iterator __it) { __begin_ = __it; } in advance_to()

12345678910>>...33