Home
last modified time | relevance | path

Searched refs:InstIterator (Results 1 – 3 of 3) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/
H A DInstIterator.h49 InstIterator() = default;
53 InstIterator(const InstIterator<A,B,C,D> &II) in InstIterator() function
57 InstIterator(InstIterator<A,B,C,D> &II) in InstIterator() function
60 template<class M> InstIterator(M &m) in InstIterator() function
68 template<class M> InstIterator(M &m, bool) in InstIterator() function
86 InstIterator& operator++() {
91 inline InstIterator operator++(int) {
92 InstIterator tmp = *this; ++*this; return tmp;
95 InstIterator& operator--() {
103 inline InstIterator operator--(int) {
[all …]
H A DFunction.h761 friend class InstIterator; variable
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DIRDynamicChecks.cpp155 for (InstIterator ii = m_to_instrument.begin(), in Instrument()
293 typedef InstVector::iterator InstIterator; typedef in Instrumenter