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

  /external/clang/lib/CodeGen/
CGDebugInfo.h 123 llvm::DIType RecordTy);
133 llvm::DIType RecordTy);
138 llvm::DIType RecordTy);
158 llvm::DIType RecordTy);
CGRTTI.cpp 253 if (const RecordType *RecordTy = dyn_cast<RecordType>(Ty)) {
254 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RecordTy->getDecl());
268 static bool IsIncompleteClassType(const RecordType *RecordTy) {
269 return !RecordTy->getDecl()->isCompleteDefinition();
284 if (const RecordType *RecordTy = dyn_cast<RecordType>(Ty)) {
285 if (IsIncompleteClassType(RecordTy))
    [all...]
CGExprAgg.cpp 210 const RecordType *RecordTy = T->getAs<RecordType>();
211 if (!RecordTy) return false;
214 RecordDecl *Record = RecordTy->getDecl();
    [all...]
CGDebugInfo.cpp 782 llvm::DIType RecordTy) {
810 VUnit, RecordTy);
849 layout.getFieldOffset(fieldNo), tunit, RecordTy);
    [all...]
CGClass.cpp 565 QualType RecordTy = CGF.getContext().getTypeDeclType(ClassDecl);
566 LValue LHS = CGF.MakeNaturalAlignAddrLValue(ThisPtr, RecordTy);
600 LValue ThisRHSLV = CGF.MakeNaturalAlignAddrLValue(SrcPtr, RecordTy);
    [all...]
CGException.cpp 456 if (const RecordType *RecordTy = ThrowType->getAs<RecordType>()) {
457 CXXRecordDecl *Record = cast<CXXRecordDecl>(RecordTy->getDecl());
    [all...]
CGDecl.cpp 841 if (const RecordType *RecordTy = Ty->getAs<RecordType>()) {
842 if (!cast<CXXRecordDecl>(RecordTy->getDecl())->hasTrivialDestructor()) {
    [all...]
  /external/clang/lib/Sema/
SemaPseudoObject.cpp     [all...]
SemaExprMember.cpp 654 QualType RecordTy = BaseType;
655 if (IsArrow) RecordTy = RecordTy->getAs<PointerType>()->getPointeeType();
657 RecordTy->getAs<RecordType>(),
    [all...]
Sema.cpp 284 if (const RecordType *RecordTy = T->getAs<RecordType>())
286 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 261 if (const RecordType *RecordTy = D->getType()->getAs<RecordType>())
262 if (RecordTy->getDecl()->isAnonymousStructOrUnion())
263 if (!VisitCXXRecordDecl(cast<CXXRecordDecl>(RecordTy->getDecl())))
    [all...]
SemaExprCXX.cpp 637 const RecordType *RecordTy = Ty->getAs<RecordType>();
638 if (!RecordTy)
640 CXXRecordDecl *RD = cast<CXXRecordDecl>(RecordTy->getDecl());
    [all...]
SemaCodeComplete.cpp 756 QualType RecordTy = Context.getTypeDeclType(Record);
759 Context.getCanonicalType(RecordTy));
    [all...]
SemaLookup.cpp 538 if (const RecordType *RecordTy
540 return !RecordTy->isBeingDefined();
    [all...]
SemaInit.cpp     [all...]
SemaOverload.cpp     [all...]
  /external/clang/lib/AST/
DeclCXX.cpp 812 if (const RecordType *RecordTy = T->getAs<RecordType>()) {
813 CXXRecordDecl* FieldRec = cast<CXXRecordDecl>(RecordTy->getDecl());
    [all...]

Completed in 342 milliseconds