Home
last modified time | relevance | path

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

/external/llvm/include/llvm/IR/
DDebugInfoMetadata.h1996 class ExprOperand {
2000 explicit ExprOperand(const uint64_t *Op) : Op(Op) {}
2022 : public std::iterator<std::input_iterator_tag, ExprOperand> {
2023 ExprOperand Op;
2029 const ExprOperand &operator*() const { return Op; }
2030 const ExprOperand *operator->() const { return &Op; }
2057 void increment() { Op = ExprOperand(getBase() + Op.getSize()); }
/external/clang/include/clang/AST/
DTypeLoc.h679 Expr *ExprOperand; member
737 return getLocalData()->ExprOperand; in getAttrExprOperand()
741 getLocalData()->ExprOperand = e; in setAttrExprOperand()
/external/llvm/lib/IR/
DDebugInfoMetadata.cpp480 unsigned MDExpression::ExprOperand::getSize() const { in getSize()