Home | History | Annotate | Download | only in AST

Lines Matching refs:OffsetOfExpr

1269 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(const ASTContext &C, QualType type,
1317 IdentifierInfo *OffsetOfExpr::OffsetOfNode::getFieldName() const {