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 149 llvm::DIType RecordTy);
159 llvm::DIType RecordTy);
164 llvm::DIType RecordTy);
185 llvm::DIType RecordTy);
188 llvm::DIType RecordTy);
192 llvm::DIType RecordTy);
195 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...]
CGExprAgg.cpp 221 const RecordType *RecordTy = T->getAs<RecordType>();
222 if (!RecordTy) return false;
225 RecordDecl *Record = RecordTy->getDecl();
    [all...]
CGDebugInfo.cpp 834 llvm::DIType RecordTy) {
856 layout.getFieldOffset(fieldno), VUnit, RecordTy);
869 layout.getFieldOffset(fieldno), VUnit, RecordTy);
    [all...]
CGClass.cpp 543 QualType RecordTy = CGF.getContext().getTypeDeclType(ClassDecl);
544 LValue LHS = CGF.MakeNaturalAlignAddrLValue(ThisPtr, RecordTy);
577 LValue ThisRHSLV = CGF.MakeNaturalAlignAddrLValue(SrcPtr, RecordTy);
802 QualType RecordTy = CGF.getContext().getTypeDeclType(ClassDecl);
804 LValue DestLV = CGF.MakeNaturalAlignAddrLValue(ThisPtr, RecordTy);
807 LValue SrcLV = CGF.MakeNaturalAlignAddrLValue(SrcPtr, RecordTy);
    [all...]
CGStmt.cpp     [all...]
CGDecl.cpp 886 if (const RecordType *RecordTy = Ty->getAs<RecordType>()) {
887 if (!cast<CXXRecordDecl>(RecordTy->getDecl())->hasTrivialDestructor()) {
    [all...]
CGException.cpp 469 if (const RecordType *RecordTy = ThrowType->getAs<RecordType>()) {
470 CXXRecordDecl *Record = cast<CXXRecordDecl>(RecordTy->getDecl());
    [all...]
  /external/clang/lib/Sema/
SemaPseudoObject.cpp     [all...]
SemaExprMember.cpp 680 QualType RecordTy = BaseType;
681 if (IsArrow) RecordTy = RecordTy->getAs<PointerType>()->getPointeeType();
683 RecordTy->getAs<RecordType>(),
    [all...]
SemaCXXScopeSpec.cpp 35 if (const RecordType *RecordTy = dyn_cast<RecordType>(Ty)) {
36 CXXRecordDecl *Record = cast<CXXRecordDecl>(RecordTy->getDecl());
    [all...]
Sema.cpp 294 if (const RecordType *RecordTy = T->getAs<RecordType>())
296 cast<CXXRecordDecl>(RecordTy->getDecl()));
    [all...]
SemaTemplateInstantiateDecl.cpp 330 if (const RecordType *RecordTy = D->getType()->getAs<RecordType>())
331 if (RecordTy->getDecl()->isAnonymousStructOrUnion())
332 if (!VisitCXXRecordDecl(cast<CXXRecordDecl>(RecordTy->getDecl())))
    [all...]
SemaDeclCXX.cpp     [all...]
SemaExprCXX.cpp 663 const RecordType *RecordTy = Ty->getAs<RecordType>();
664 if (!RecordTy)
666 CXXRecordDecl *RD = cast<CXXRecordDecl>(RecordTy->getDecl());
    [all...]
SemaCodeComplete.cpp 801 QualType RecordTy = Context.getTypeDeclType(Record);
804 Context.getCanonicalType(RecordTy));
    [all...]
SemaOverload.cpp     [all...]
SemaInit.cpp     [all...]
  /external/clang/lib/AST/
DeclCXX.cpp 710 if (const RecordType *RecordTy = T->getAs<RecordType>()) {
711 CXXRecordDecl* FieldRec = cast<CXXRecordDecl>(RecordTy->getDecl());
    [all...]

Completed in 634 milliseconds