HomeSort by relevance Sort by last modified time
    Searched defs:RecordTy (Results 1 - 6 of 6) sorted by null

  /external/clang/lib/Sema/
SemaExprMember.cpp 646 QualType RecordTy = BaseType;
647 if (IsArrow) RecordTy = RecordTy->getAs<PointerType>()->getPointeeType();
649 RecordTy->getAs<RecordType>(),
    [all...]
SemaPseudoObject.cpp     [all...]
SemaExprCXX.cpp 618 const RecordType *RecordTy = Ty->getAs<RecordType>();
619 if (!RecordTy)
621 CXXRecordDecl *RD = cast<CXXRecordDecl>(RecordTy->getDecl());
    [all...]
SemaOverload.cpp     [all...]
  /external/clang/lib/CodeGen/
CGExprAgg.cpp 258 const RecordType *RecordTy = T->getAs<RecordType>();
259 if (!RecordTy) return false;
262 RecordDecl *Record = RecordTy->getDecl();
    [all...]
CGClass.cpp 553 QualType RecordTy = CGF.getContext().getTypeDeclType(ClassDecl);
554 LValue LHS = CGF.MakeNaturalAlignAddrLValue(ThisPtr, RecordTy);
587 LValue ThisRHSLV = CGF.MakeNaturalAlignAddrLValue(SrcPtr, RecordTy);
812 QualType RecordTy = CGF.getContext().getTypeDeclType(ClassDecl);
814 LValue DestLV = CGF.MakeNaturalAlignAddrLValue(ThisPtr, RecordTy);
817 LValue SrcLV = CGF.MakeNaturalAlignAddrLValue(SrcPtr, RecordTy);
    [all...]

Completed in 540 milliseconds