Home
last modified time | relevance | path

Searched refs:getDeclaredReturnType (Results 1 – 5 of 5) sorted by relevance

/netbsd/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
H A DMallocChecker.cpp1045 return FD->getDeclaredReturnType().getDesugaredType(AC) == AC.VoidPtrTy && in isStandardRealloc()
1059 return FD->getDeclaredReturnType().getDesugaredType(AC) == AC.VoidPtrTy && in isGRealloc()
/netbsd/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaDeclCXX.cpp8451 !FD->getDeclaredReturnType()->isDependentType() && in CheckExplicitlyDefaultedComparison()
8452 !Context.hasSameType(FD->getDeclaredReturnType(), Context.BoolTy)) { in CheckExplicitlyDefaultedComparison()
8454 << (int)DCK << FD->getDeclaredReturnType() << Context.BoolTy in CheckExplicitlyDefaultedComparison()
8462 FD->getDeclaredReturnType()->getContainedDeducedType() && in CheckExplicitlyDefaultedComparison()
8463 !Context.hasSameType(FD->getDeclaredReturnType(), in CheckExplicitlyDefaultedComparison()
8467 << (int)DCK << FD->getDeclaredReturnType() << Context.AutoDeductTy in CheckExplicitlyDefaultedComparison()
8515 FD->getDeclaredReturnType()->isUndeducedAutoType()) { in CheckExplicitlyDefaultedComparison()
8526 FD, SubstAutoType(FD->getDeclaredReturnType(), Cat)); in CheckExplicitlyDefaultedComparison()
H A DSemaOverload.cpp1205 !Context.hasSameType(Old->getDeclaredReturnType(), in IsOverload()
1206 New->getDeclaredReturnType()))) in IsOverload()
H A DSemaDecl.cpp3500 QualType OldDeclaredReturnType = Old->getDeclaredReturnType(); in MergeFunctionDecl()
3501 QualType NewDeclaredReturnType = New->getDeclaredReturnType(); in MergeFunctionDecl()
/netbsd/external/apache2/llvm/dist/clang/include/clang/AST/
H A DDecl.h2523 QualType getDeclaredReturnType() const { in getDeclaredReturnType() function