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

  /external/clang/lib/CodeGen/
CGDebugInfo.h 142 llvm::DIType RecordTy);
152 llvm::DIType RecordTy);
157 llvm::DIType RecordTy);
178 llvm::DIType RecordTy);
181 llvm::DIType RecordTy);
185 llvm::DIType RecordTy);
188 llvm::DIType RecordTy);
CGRTTI.cpp 263 if (const RecordType *RecordTy = dyn_cast<RecordType>(Ty)) {
264 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RecordTy->getDecl());
280 static bool IsIncompleteClassType(const RecordType *RecordTy) {
281 return !RecordTy->getDecl()->isCompleteDefinition();
296 if (const RecordType *RecordTy = dyn_cast<RecordType>(Ty)) {
297 if (IsIncompleteClassType(RecordTy))
    [all...]
CGDebugInfo.cpp 812 llvm::DIType RecordTy) {
834 layout.getFieldOffset(fieldno), VUnit, RecordTy);
847 layout.getFieldOffset(fieldno), VUnit, RecordTy);
858 llvm::DIType RecordTy) {
    [all...]
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...]
CGDecl.cpp 844 if (const RecordType *RecordTy = Ty->getAs<RecordType>()) {
845 if (!cast<CXXRecordDecl>(RecordTy->getDecl())->hasTrivialDestructor()) {
    [all...]
CGException.cpp 466 if (const RecordType *RecordTy = ThrowType->getAs<RecordType>()) {
467 CXXRecordDecl *Record = cast<CXXRecordDecl>(RecordTy->getDecl());
    [all...]
  /external/clang/lib/Sema/
SemaPseudoObject.cpp     [all...]
SemaExprMember.cpp 646 QualType RecordTy = BaseType;
647 if (IsArrow) RecordTy = RecordTy->getAs<PointerType>()->getPointeeType();
649 RecordTy->getAs<RecordType>(),
    [all...]
Sema.cpp 297 if (const RecordType *RecordTy = T->getAs<RecordType>())
299 cast<CXXRecordDecl>(RecordTy->getDecl()));
    [all...]
SemaCXXScopeSpec.cpp 35 if (const RecordType *RecordTy = dyn_cast<RecordType>(Ty)) {
36 CXXRecordDecl *Record = cast<CXXRecordDecl>(RecordTy->getDecl());
    [all...]
SemaDeclCXX.cpp     [all...]
SemaTemplateInstantiateDecl.cpp 317 if (const RecordType *RecordTy = D->getType()->getAs<RecordType>())
318 if (RecordTy->getDecl()->isAnonymousStructOrUnion())
319 if (!VisitCXXRecordDecl(cast<CXXRecordDecl>(RecordTy->getDecl())))
    [all...]
SemaExprCXX.cpp 618 const RecordType *RecordTy = Ty->getAs<RecordType>();
619 if (!RecordTy)
621 CXXRecordDecl *RD = cast<CXXRecordDecl>(RecordTy->getDecl());
    [all...]
SemaCodeComplete.cpp 801 QualType RecordTy = Context.getTypeDeclType(Record);
804 Context.getCanonicalType(RecordTy));
    [all...]
SemaInit.cpp     [all...]
SemaOverload.cpp     [all...]
  /external/clang/lib/AST/
DeclCXX.cpp 701 if (const RecordType *RecordTy = T->getAs<RecordType>()) {
702 CXXRecordDecl* FieldRec = cast<CXXRecordDecl>(RecordTy->getDecl());
    [all...]

Completed in 265 milliseconds