Searched refs:InstIterator (Results 1 – 3 of 3) sorted by relevance
/external/llvm/include/llvm/IR/ |
D | InstIterator.h | 30 template <class BB_t, class BB_i_t, class BI_t, class II_t> class InstIterator { 46 InstIterator() {} in InstIterator() function 50 InstIterator(const InstIterator<A,B,C,D> &II) in InstIterator() function 54 InstIterator(InstIterator<A,B,C,D> &II) in InstIterator() function 57 template<class M> InstIterator(M &m) in InstIterator() function 65 template<class M> InstIterator(M &m, bool) in InstIterator() function 76 inline bool operator==(const InstIterator &y) const { 79 inline bool operator!=(const InstIterator& y) const { 83 InstIterator& operator++() { 88 inline InstIterator operator++(int) { [all …]
|
/external/lldb/source/Expression/ |
D | IRDynamicChecks.cpp | 178 for (InstIterator ii = m_to_instrument.begin(), last_ii = m_to_instrument.end(); in Instrument() 334 typedef InstVector::iterator InstIterator; typedef in Instrumenter
|
/external/llvm/docs/ |
D | ProgrammersManual.rst | 1639 ``InstIterator`` should be used instead. You'll need to include 1640 ``llvm/IR/InstIterator.h`` (`doxygen 1642 ``InstIterator``\ s explicitly in your code. Here's a small example that shows 1647 #include "llvm/IR/InstIterator.h" 1653 Easy, isn't it? You can also use ``InstIterator``\ s to fill a work list with
|