Home
last modified time | relevance | path

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

/NextBSD/contrib/llvm/include/llvm/IR/
HDDebugInfoMetadata.h2062 class ExprOperand {
2066 explicit ExprOperand(const uint64_t *Op) : Op(Op) {}
2088 : public std::iterator<std::input_iterator_tag, ExprOperand> {
2089 ExprOperand Op;
2095 const ExprOperand &operator*() const { return Op; }
2096 const ExprOperand *operator->() const { return &Op; }
2123 void increment() { Op = ExprOperand(getBase() + Op.getSize()); }
/NextBSD/contrib/llvm/tools/clang/include/clang/AST/
HDTypeLoc.h704 Expr *ExprOperand; member
762 return getLocalData()->ExprOperand; in getAttrExprOperand()
766 getLocalData()->ExprOperand = e; in setAttrExprOperand()
/NextBSD/contrib/llvm/lib/IR/
HDDebugInfoMetadata.cpp494 unsigned DIExpression::ExprOperand::getSize() const { in getSize()