Home | History | Annotate | Download | only in Sema

Lines Matching refs:Deduced

3816   QualType Deduced;
3833 assert(AT->isDeduced() && "should have deduced to dependent type");
3840 DeduceAutoResult DAR = DeduceAutoType(OrigResultType, RetExpr, Deduced);
3865 Deduced = SubstAutoType(OrigResultType.getType(), Context.VoidTy);
3866 if (Deduced.isNull())
3872 if (FD->hasAttr<CUDAGlobalAttr>() && !Deduced->isVoidType()) {
3879 // has multiple return statements, the return type is deduced for each return
3880 // statement. [...] if the type deduced is not the same in each deduction,
3884 AutoType *NewAT = Deduced->getContainedAutoType();
3908 // Update all declarations of the function to have the deduced return type.
3909 Context.adjustDeducedFunctionResultType(FD, Deduced);
3919 // RetValExp should determine the deduced type.