HomeSort by: relevance | last modified time | path
    Searched refs:getAsCXXRecordDecl (Results 1 - 25 of 101) sorted by relevancy

1 2 3 4 5

  /src/external/apache2/llvm/dist/clang/lib/AST/
ASTImporterLookupTable.cpp 59 LT.add(RTy->getAsCXXRecordDecl());
61 LT.add(SpecTy->getAsCXXRecordDecl());
64 if (SubstTy->getAsCXXRecordDecl())
65 LT.add(SubstTy->getAsCXXRecordDecl());
ComparisonCategories.cpp 50 auto *Record = VD->getType()->getAsCXXRecordDecl();
128 auto *RD = Ty->getAsCXXRecordDecl();
RecordLayoutBuilder.cpp 190 const CXXRecordDecl *BaseDecl = Base.getType()->getAsCXXRecordDecl();
216 const CXXRecordDecl *MemberDecl = RT->getAsCXXRecordDecl();
395 const CXXRecordDecl *BaseDecl = Base.getType()->getAsCXXRecordDecl();
405 const CXXRecordDecl *VBaseDecl = Base.getType()->getAsCXXRecordDecl();
438 if (const CXXRecordDecl *RD = T->getAsCXXRecordDecl())
448 const CXXRecordDecl *RD = RT->getAsCXXRecordDecl();
506 const CXXRecordDecl *BaseDecl = Base.getType()->getAsCXXRecordDecl();
516 const CXXRecordDecl *VBaseDecl = Base.getType()->getAsCXXRecordDecl();
540 if (const CXXRecordDecl *RD = T->getAsCXXRecordDecl()) {
552 const CXXRecordDecl *RD = RT->getAsCXXRecordDecl();
    [all...]
QualTypeNames.cpp 245 TD = Type->getAsCXXRecordDecl();
330 Decl = TypePtr->getAsCXXRecordDecl();
VTableBuilder.cpp 233 VirtualBase = VBaseType->getAsCXXRecordDecl();
245 const CXXRecordDecl *Base = Element.Base->getType()->getAsCXXRecordDecl();
347 const CXXRecordDecl *BaseDecl = B.getType()->getAsCXXRecordDecl();
383 const CXXRecordDecl *BaseDecl = B.getType()->getAsCXXRecordDecl();
732 const CXXRecordDecl *BaseDecl = B.getType()->getAsCXXRecordDecl();
753 const CXXRecordDecl *BaseDecl = B.getType()->getAsCXXRecordDecl();
1751 const CXXRecordDecl *BaseDecl = B.getType()->getAsCXXRecordDecl();
1825 const CXXRecordDecl *BaseDecl = B.getType()->getAsCXXRecordDecl();
1854 const CXXRecordDecl *BaseDecl = B.getType()->getAsCXXRecordDecl();
2348 RD->vbases_begin()->getType()->getAsCXXRecordDecl();
    [all...]
MicrosoftCXXABI.cpp 180 RD->bases_begin()->getType()->getAsCXXRecordDecl();
  /src/external/apache2/llvm/dist/clang/lib/Analysis/
ConstructionContext.cpp 54 if (!BTE && !(MTE->getType().getCanonicalType()->getAsCXXRecordDecl()
112 ->getAsCXXRecordDecl()->hasTrivialDestructor());
122 ->getAsCXXRecordDecl()->hasTrivialDestructor());
155 ->getAsCXXRecordDecl()->hasTrivialDestructor());
193 assert(BTE->getType().getCanonicalType()->getAsCXXRecordDecl()
Consumed.cpp 147 if (const CXXRecordDecl *RD = QT->getAsCXXRecordDecl())
157 if (const CXXRecordDecl *RD = QT->getAsCXXRecordDecl())
197 QT->getAsCXXRecordDecl()->getAttr<ConsumableAttr>();
1207 const CXXRecordDecl *RD = ReturnType->getAsCXXRecordDecl();
CFG.cpp 728 if (Arg->getType()->getAsCXXRecordDecl() && !Arg->isGLValue())
1442 assert(!CO->getType()->getAsCXXRecordDecl() || CO->isGLValue() ||
1864 if (Ty->getAsCXXRecordDecl()->isAnyDestructorNoReturn())
1888 const CXXRecordDecl *CD = VI.getType()->getAsCXXRecordDecl();
1898 const CXXRecordDecl *CD = BI.getType()->getAsCXXRecordDecl();
1916 if (const CXXRecordDecl *CD = QT->getAsCXXRecordDecl())
2008 if (const CXXRecordDecl *CD = QT->getAsCXXRecordDecl())
4587 CXXRecordDecl *RD = Context->getBaseElementType(DTy)->getAsCXXRecordDecl();
5040 const CXXRecordDecl *classDecl = ty->getAsCXXRecordDecl();
5049 astContext.getBaseElementType(DTy)->getAsCXXRecordDecl();
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/WebKit/
UncountedLocalVarsChecker.cpp 60 if (auto *CXXRD = T->getAsCXXRecordDecl()) {
195 MaybeGuardianArgType->getAsCXXRecordDecl();
PtrTypesSemantics.cpp 56 const CXXRecordDecl *R = T->getAsCXXRecordDecl();
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
Store.cpp 238 const CXXRecordDecl *RD = TVR->getValueType()->getAsCXXRecordDecl();
244 Expected = Ty->getAsCXXRecordDecl();
282 BaseDecl = BaseType->getAsCXXRecordDecl();
309 return TVR->getValueType()->getAsCXXRecordDecl();
326 const CXXRecordDecl *TargetClass = TargetType->getAsCXXRecordDecl();
  /src/external/apache2/llvm/dist/clang/lib/Index/
IndexTypeSourceInfo.cpp 67 if (auto *CD = TL.getType()->getAsCXXRecordDecl()) {
159 T->getTemplateName(), TL.getTemplateNameLoc(), T->getAsCXXRecordDecl(),
189 T->getTemplateName(), TL.getTemplateNameLoc(), T->getAsCXXRecordDecl(),
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
DeleteWithNonVirtualDtorChecker.cpp 73 const auto *BaseClass = BaseClassRegion->getValueType()->getAsCXXRecordDecl();
Iterator.cpp 23 const auto *CRD = Type->getUnqualifiedDesugaredType()->getAsCXXRecordDecl();
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/UninitializedObject/
UninitializedObjectChecker.cpp 85 assert(T->getAsCXXRecordDecl());
96 Out << BaseClassT->getAsCXXRecordDecl()->getName() << "::";
467 if (R && !R->getValueType()->getAsCXXRecordDecl())
  /src/external/apache2/llvm/dist/clang/include/clang/Tooling/Refactoring/
RecursiveSymbolVisitor.h 103 return visit(TP->getAsCXXRecordDecl(), TypeBeginLoc, TypeEndLoc);
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGRecordLayoutBuilder.cpp 523 const CXXRecordDecl *BaseDecl = Base.getType()->getAsCXXRecordDecl();
666 const CXXRecordDecl *BaseDecl = Base.getType()->getAsCXXRecordDecl();
679 const CXXRecordDecl *BaseDecl = Base.getType()->getAsCXXRecordDecl();
707 if (!hasOwnStorage(Base.getType()->getAsCXXRecordDecl(), Query))
CGVTables.cpp 91 auto ClassDecl = ResultType->getPointeeType()->getAsCXXRecordDecl();
1235 if (B.getType()->getAsCXXRecordDecl()->isDynamicClass())
1238 GetVCallVisibilityLevel(B.getType()->getAsCXXRecordDecl(), Visited));
1241 if (B.getType()->getAsCXXRecordDecl()->isDynamicClass())
1244 GetVCallVisibilityLevel(B.getType()->getAsCXXRecordDecl(), Visited));
CGCXXABI.cpp 247 derivedType->castAs<MemberPointerType>()->getClass()->getAsCXXRecordDecl();
MicrosoftCXXABI.cpp 349 const CXXRecordDecl *VBase = I.getType()->getAsCXXRecordDecl();
921 const CXXRecordDecl *SrcDecl = SrcRecordTy->getAsCXXRecordDecl();
935 const CXXRecordDecl *BaseDecl = Base.getType()->getAsCXXRecordDecl();
954 const CXXRecordDecl *SrcDecl = SrcRecordTy->getAsCXXRecordDecl();
988 const CXXRecordDecl *SrcDecl = SrcRecordTy->getAsCXXRecordDecl();
1107 const CXXRecordDecl *RD = FI.getReturnType()->getAsCXXRecordDecl();
1209 const CXXRecordDecl *VBase = S.getType()->getAsCXXRecordDecl();
2158 const CXXRecordDecl *VBase = I.getType()->getAsCXXRecordDecl();
2826 if (BS.getType()->getAsCXXRecordDecl()->getCanonicalDecl() ==
3612 serializeClassHierarchy(Classes, Base.getType()->getAsCXXRecordDecl());
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaFixItUtils.cpp 208 const CXXRecordDecl *RD = T->getAsCXXRecordDecl();
SemaCoroutine.cpp 107 auto *RD = CoroTrait->getAsCXXRecordDecl();
131 if (!PromiseType->getAsCXXRecordDecl()) {
365 << NameInfo.getName() << Base->getType()->getAsCXXRecordDecl()
862 auto *RD = Promise->getType()->getAsCXXRecordDecl();
1070 auto *PointeeRD = PromiseType->getAsCXXRecordDecl();
1137 PromiseRecordDecl = Fn.CoroutinePromise->getType()->getAsCXXRecordDecl();
1675 if (PD->getType()->getAsCXXRecordDecl() ||
SemaExprCXX.cpp 417 Destroyed = SearchType->getAsCXXRecordDecl();
902 CXXRecordDecl *BaseDecl = BS.getType()->getAsCXXRecordDecl();
973 CXXRecordDecl *RD = Ty->getAsCXXRecordDecl();
1389 CXXRecordDecl *Class = BaseType->getAsCXXRecordDecl();
2617 LookupQualifiedName(R, AllocElemType->getAsCXXRecordDecl());
4671 if (const auto *RD = ArgTy->getAsCXXRecordDecl())
4681 if (ArgTy->getAsCXXRecordDecl())
4847 if (const CXXRecordDecl *RD = T->getAsCXXRecordDecl())
4851 if (const CXXRecordDecl *RD = T->getAsCXXRecordDecl())
4855 if (const CXXRecordDecl *RD = T->getAsCXXRecordDecl())
    [all...]
SemaCUDA.cpp 533 if (CXXRecordDecl *RD = BS.getType()->getAsCXXRecordDecl())
543 ->getAsCXXRecordDecl())
582 if (CXXRecordDecl *RD = VD->getType()->getAsCXXRecordDecl())

Completed in 66 milliseconds

1 2 3 4 5