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

/external/clang/lib/AST/
H A DExpr.cpp1230 OffsetOfExpr *OffsetOfExpr::Create(ASTContext &C, QualType type,
1236 void *Mem = C.Allocate(sizeof(OffsetOfExpr) +
1240 return new (Mem) OffsetOfExpr(C, type, OperatorLoc, tsi, comps, exprs,
1244 OffsetOfExpr *OffsetOfExpr::CreateEmpty(ASTContext &C,
1246 void *Mem = C.Allocate(sizeof(OffsetOfExpr) +
1249 return new (Mem) OffsetOfExpr(numComps, numExprs);
1252 OffsetOfExpr::OffsetOfExpr(ASTContex function in class:OffsetOfExpr
[all...]
/external/clang/include/clang/AST/
H A DExpr.h1735 /// OffsetOfExpr - [C99 7.17] - This represents an expression of the form
1749 class OffsetOfExpr : public Expr { class in class:clang::StringLiteral
1855 OffsetOfExpr(ASTContext &C, QualType type,
1860 explicit OffsetOfExpr(unsigned numComps, unsigned numExprs) function in class:clang::StringLiteral::OffsetOfExpr
1866 static OffsetOfExpr *Create(ASTContext &C, QualType type,
1871 static OffsetOfExpr *CreateEmpty(ASTContext &C,
1909 return const_cast<OffsetOfExpr*>(this)->getIndexExpr(Idx);

Completed in 40 milliseconds