HomeSort by relevance Sort by last modified time
    Searched defs:op_begin (Results 1 - 2 of 2) sorted by null

  /external/llvm/include/llvm/IR/
OperandTraits.h 32 static Use *op_begin(SubClass* U) { function in struct:llvm::FixedNumOperandTraits
67 static Use *op_begin(SubClass* U) { function in struct:llvm::VariadicOperandTraits
94 static Use *op_begin(User* U) { function in struct:llvm::HungoffOperandTraits
112 inline op_iterator op_begin(); \
113 inline const_op_iterator op_begin() const; \
124 CLASS::op_iterator CLASS::op_begin() { \
125 return OperandTraits<CLASS>::op_begin(this); \
127 CLASS::const_op_iterator CLASS::op_begin() const { \
128 return OperandTraits<CLASS>::op_begin(const_cast<CLASS*>(this)); \
140 OperandTraits<CLASS>::op_begin(const_cast<CLASS*>(this))[i_nocapture].get());
    [all...]
Metadata.h 284 op_iterator op_begin() { return op_iterator(this, 0); } function in class:llvm::NamedMDNode
288 const_op_iterator op_begin() const { return const_op_iterator(this, 0); } function in class:llvm::NamedMDNode
292 return iterator_range<op_iterator>(op_begin(), op_end());
295 return iterator_range<const_op_iterator>(op_begin(), op_end());

Completed in 2394 milliseconds