Home | History | Annotate | Download | only in AST

Lines Matching defs:RL

1886                                    const ASTRecordLayout *RL = nullptr) {
1887 if (!RL) {
1889 RL = &Info.Ctx.getASTRecordLayout(Derived);
1892 Obj.getLValueOffset() += RL->getBaseClassOffset(Base);
1939 const ASTRecordLayout *RL = nullptr) {
1940 if (!RL) {
1942 RL = &Info.Ctx.getASTRecordLayout(FD->getParent());
1946 LVal.Offset += Info.Ctx.toCharUnitsFromBits(RL->getFieldOffset(I));
7643 const ASTRecordLayout &RL = Info.Ctx.getASTRecordLayout(RD);
7645 assert(i < RL.getFieldCount() && "offsetof field in wrong type");
7646 Result += Info.Ctx.toCharUnitsFromBits(RL.getFieldOffset(i));
7665 const ASTRecordLayout &RL = Info.Ctx.getASTRecordLayout(RD);
7674 Result += RL.getBaseClassOffset(cast<CXXRecordDecl>(BaseRT->getDecl()));