reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

tools/clang/include/clang/AST/Expr.h
 2753   QualType getCallReturnType(const ASTContext &Ctx) const;

References

tools/clang/include/clang/Analysis/AnyCall.h
  160         return cast<CallExpr>(E)->getCallReturnType(Ctx);
  169       return cast<CallExpr>(E)->getCallReturnType(Ctx);
tools/clang/lib/AST/Expr.cpp
 1518   if (const TagDecl *TD = getCallReturnType(Ctx)->getAsTagDecl())
 2526       if (Op->getCallReturnType(Ctx)->isReferenceType() ||
 2527           Op->getCallReturnType(Ctx)->isVoidType())
tools/clang/lib/AST/ExprClassification.cpp
  308     return ClassifyUnnamed(Ctx, cast<CallExpr>(E)->getCallReturnType(Ctx));
tools/clang/lib/Analysis/RetainSummaryManager.cpp
  723   QualType ResultTy = CE->getCallReturnType(Ctx);
tools/clang/lib/CodeGen/CGBuiltin.cpp
 5146     llvm::Type *Ty = ConvertType(E->getCallReturnType(getContext()));
 7740         Ops[0], ConvertType(E->getCallReturnType(getContext())),
 7748         Ops[0], ConvertType(E->getCallReturnType(getContext())),
 7756         Ops[0], ConvertType(E->getCallReturnType(getContext())),
 7764         Ops[0], ConvertType(E->getCallReturnType(getContext())),
 7772         Ops[0], ConvertType(E->getCallReturnType(getContext())),
 8415     llvm::Type *Ty = ConvertType(E->getCallReturnType(getContext()));
tools/clang/lib/CodeGen/CGCoroutine.cpp
  296   return cast<CallExpr>(RE)->getCallReturnType(Ctx);
tools/clang/lib/CodeGen/CGExpr.cpp
 4664   assert(E->getCallReturnType(getContext())->isReferenceType() &&
tools/clang/lib/CodeGen/CGExprAgg.cpp
  889   if (E->getCallReturnType(CGF.getContext())->isReferenceType()) {
tools/clang/lib/CodeGen/CGExprComplex.cpp
  407   if (E->getCallReturnType(CGF.getContext())->isReferenceType())
tools/clang/lib/CodeGen/CGExprScalar.cpp
  577     if (E->getCallReturnType(CGF.getContext())->isReferenceType())
tools/clang/lib/Sema/SemaChecking.cpp
  294   QualType ReturnTy = CE->getCallReturnType(S.Context);
12183     if (!Call->getCallReturnType(SemaRef.Context)->isReferenceType())
tools/clang/lib/Sema/SemaCoroutine.cpp
  445     QualType RetType = AwaitSuspend->getCallReturnType(S.Context);
tools/clang/lib/Sema/SemaExprCXX.cpp
 6641     if (CheckCallReturnType(Call->getCallReturnType(Context),
tools/clang/tools/extra/clang-tidy/modernize/LoopConvertUtils.cpp
  558       ExprType = Call->getCallReturnType(*Context);
tools/clang/tools/libclang/CIndex.cpp
 3909     rettype = callExpr->getCallReturnType(ctx);