Home | History | Annotate | Download | only in Sema

Lines Matching refs:FuncT

4687   const FunctionType *FuncT;
4691 FuncT = PT->getPointeeType()->getAs<FunctionType>();
4692 if (!FuncT)
4697 FuncT = BPT->getPointeeType()->castAs<FunctionType>();
4720 if (!FuncT->getReturnType()->isVoidType())
4732 if (CheckCallReturnType(FuncT->getReturnType(), Fn->getLocStart(), TheCall,
4737 TheCall->setType(FuncT->getCallResultType(Context));
4738 TheCall->setValueKind(Expr::getValueKindForType(FuncT->getReturnType()));
4740 const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FuncT);
4746 assert(isa<FunctionNoProtoType>(FuncT) && "Unknown FunctionType!");