Searched refs:InstIterator (Results 1 – 2 of 2) 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/llvm/docs/ |
D | ProgrammersManual.rst | 1647 ``InstIterator`` should be used instead. You'll need to include 1648 ``llvm/IR/InstIterator.h`` (`doxygen 1650 ``InstIterator``\ s explicitly in your code. Here's a small example that shows 1655 #include "llvm/IR/InstIterator.h" 1661 Easy, isn't it? You can also use ``InstIterator``\ s to fill a work list with
|