Home | History | Annotate | Download | only in Sema

Lines Matching refs:FuncT

3788   const FunctionType *FuncT;
3792 FuncT = PT->getPointeeType()->getAs<FunctionType>();
3793 if (FuncT == 0)
3798 FuncT = BPT->getPointeeType()->castAs<FunctionType>();
3821 if (!FuncT->getResultType()->isVoidType())
3833 if (CheckCallReturnType(FuncT->getResultType(),
3839 TheCall->setType(FuncT->getCallResultType(Context));
3840 TheCall->setValueKind(Expr::getValueKindForType(FuncT->getResultType()));
3842 if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FuncT)) {
3847 assert(isa<FunctionNoProtoType>(FuncT) && "Unknown FunctionType!");