Searched defs:OffsetOfExpr (Results 1 - 2 of 2) sorted by relevance

/external/clang/lib/AST/
H A DExpr.cpp1123 OffsetOfExpr *OffsetOfExpr::Create(ASTContext &C, QualType type,
1129 void *Mem = C.Allocate(sizeof(OffsetOfExpr) +
1133 return new (Mem) OffsetOfExpr(C, type, OperatorLoc, tsi, comps, exprs,
1137 OffsetOfExpr *OffsetOfExpr::CreateEmpty(ASTContext &C,
1139 void *Mem = C.Allocate(sizeof(OffsetOfExpr) +
1142 return new (Mem) OffsetOfExpr(numComps, numExprs);
1145 OffsetOfExpr::OffsetOfExpr(ASTContex function in class:OffsetOfExpr
[all...]
/external/clang/include/clang/AST/
H A DExpr.h1640 /// OffsetOfExpr - [C99 7.17] - This represents an expression of the form
1654 class OffsetOfExpr : public Expr { class in class:clang::StringLiteral
1758 OffsetOfExpr(ASTContext &C, QualType type,
1763 explicit OffsetOfExpr(unsigned numComps, unsigned numExprs) function in class:clang::StringLiteral::OffsetOfExpr
1769 static OffsetOfExpr *Create(ASTContext &C, QualType type,
1774 static OffsetOfExpr *CreateEmpty(ASTContext &C,
1812 return const_cast<OffsetOfExpr*>(this)->getIndexExpr(Idx);
1833 static bool classof(const OffsetOfExpr *) { return true; }

Completed in 62 milliseconds