Home | History | Annotate | Download | only in AST

Lines Matching defs:RL

1300                                    const ASTRecordLayout *RL = 0) {
1301 if (!RL) RL = &Info.Ctx.getASTRecordLayout(Derived);
1302 Obj.getLValueOffset() += RL->getBaseClassOffset(Base);
1336 const ASTRecordLayout *RL = 0) {
1337 if (!RL)
1338 RL = &Info.Ctx.getASTRecordLayout(FD->getParent());
1341 LVal.Offset += Info.Ctx.toCharUnitsFromBits(RL->getFieldOffset(I));
5283 const ASTRecordLayout &RL = Info.Ctx.getASTRecordLayout(RD);
5285 assert(i < RL.getFieldCount() && "offsetof field in wrong type");
5286 Result += Info.Ctx.toCharUnitsFromBits(RL.getFieldOffset(i));
5304 const ASTRecordLayout &RL = Info.Ctx.getASTRecordLayout(RD);
5313 Result += RL.getBaseClassOffset(cast<CXXRecordDecl>(BaseRT->getDecl()));