Home | History | Annotate | Download | only in AST

Lines Matching defs:OffsetOfExpr

1322 OffsetOfExpr *OffsetOfExpr::Create(const ASTContext &C, QualType type,
1328 void *Mem = C.Allocate(sizeof(OffsetOfExpr) +
1332 return new (Mem) OffsetOfExpr(C, type, OperatorLoc, tsi, comps, exprs,
1336 OffsetOfExpr *OffsetOfExpr::CreateEmpty(const ASTContext &C,
1338 void *Mem = C.Allocate(sizeof(OffsetOfExpr) +
1341 return new (Mem) OffsetOfExpr(numComps, numExprs);
1344 OffsetOfExpr::OffsetOfExpr(const ASTContext &C, QualType type,
1370 IdentifierInfo *OffsetOfExpr::OffsetOfNode::getFieldName() const {