Home
last modified time | relevance | path

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

/external/llvm/include/llvm/IR/
DDebugInfoMetadata.h1985 class ExprOperand {
1989 explicit ExprOperand(const uint64_t *Op) : Op(Op) {}
2011 : public std::iterator<std::input_iterator_tag, ExprOperand> {
2012 ExprOperand Op;
2018 const ExprOperand &operator*() const { return Op; }
2019 const ExprOperand *operator->() const { return &Op; }
2046 void increment() { Op = ExprOperand(getBase() + Op.getSize()); }
/external/clang/include/clang/AST/
DTypeLoc.h712 Expr *ExprOperand; member
774 return getLocalData()->ExprOperand; in getAttrExprOperand()
778 getLocalData()->ExprOperand = e; in setAttrExprOperand()
/external/llvm/lib/IR/
DDebugInfoMetadata.cpp483 unsigned DIExpression::ExprOperand::getSize() const { in getSize()