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

  /external/llvm/include/llvm/IR/
OperandTraits.h 35 static Use *op_end(SubClass* U) { function in struct:llvm::FixedNumOperandTraits
70 static Use *op_end(SubClass* U) { function in struct:llvm::VariadicOperandTraits
97 static Use *op_end(User* U) { function in struct:llvm::HungoffOperandTraits
114 inline op_iterator op_end(); \
115 inline const_op_iterator op_end() const; \
130 CLASS::op_iterator CLASS::op_end() { \
131 return OperandTraits<CLASS>::op_end(this); \
133 CLASS::const_op_iterator CLASS::op_end() const { \
134 return OperandTraits<CLASS>::op_end(const_cast<CLASS*>(this)); \
Metadata.h 285 op_iterator op_end() { return op_iterator(this, getNumOperands()); } function in class:llvm::NamedMDNode
289 const_op_iterator op_end() const { return const_op_iterator(this, getNumOperands()); } 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());
  /external/lldb/source/Expression/
IRInterpreter.cpp 247 ConstantExpr::const_op_iterator op_end = constant_expr->op_end(); local
259 if (op_cursor == op_end)
262 SmallVector <Value *, 8> indices (op_cursor, op_end);
    [all...]

Completed in 307 milliseconds