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

/external/clang/lib/AST/
H A DExpr.cpp1269 OffsetOfExpr *OffsetOfExpr::Create(const ASTContext &C, QualType type,
1275 void *Mem = C.Allocate(sizeof(OffsetOfExpr) +
1279 return new (Mem) OffsetOfExpr(C, type, OperatorLoc, tsi, comps, exprs,
1283 OffsetOfExpr *OffsetOfExpr::CreateEmpty(const ASTContext &C,
1285 void *Mem = C.Allocate(sizeof(OffsetOfExpr) +
1288 return new (Mem) OffsetOfExpr(numComps, numExprs);
1291 OffsetOfExpr::OffsetOfExpr(cons function in class:OffsetOfExpr
[all...]
/external/clang/include/clang/AST/
H A DExpr.h1757 /// OffsetOfExpr - [C99 7.17] - This represents an expression of the form
1771 class OffsetOfExpr : public Expr { class in class:clang::StringLiteral
1877 OffsetOfExpr(const ASTContext &C, QualType type,
1882 explicit OffsetOfExpr(unsigned numComps, unsigned numExprs) function in class:clang::StringLiteral::OffsetOfExpr
1888 static OffsetOfExpr *Create(const ASTContext &C, QualType type,
1893 static OffsetOfExpr *CreateEmpty(const ASTContext &C,
1931 return const_cast<OffsetOfExpr*>(this)->getIndexExpr(Idx);

Completed in 111 milliseconds