Home | History | Annotate | Download | only in AST

Lines Matching refs:OffsetOfExpr

993 OffsetOfExpr *OffsetOfExpr::Create(ASTContext &C, QualType type, 
999 void *Mem = C.Allocate(sizeof(OffsetOfExpr) +
1003 return new (Mem) OffsetOfExpr(C, type, OperatorLoc, tsi, compsPtr, numComps,
1007 OffsetOfExpr *OffsetOfExpr::CreateEmpty(ASTContext &C,
1009 void *Mem = C.Allocate(sizeof(OffsetOfExpr) +
1012 return new (Mem) OffsetOfExpr(numComps, numExprs);
1015 OffsetOfExpr::OffsetOfExpr(ASTContext &C, QualType type,
1042 IdentifierInfo *OffsetOfExpr::OffsetOfNode::getFieldName() const {