Home | History | Annotate | Download | only in Sema

Lines Matching refs:FuncT

4513   const FunctionType *FuncT;
4517 FuncT = PT->getPointeeType()->getAs<FunctionType>();
4518 if (FuncT == 0)
4523 FuncT = BPT->getPointeeType()->castAs<FunctionType>();
4546 if (!FuncT->getResultType()->isVoidType())
4558 if (CheckCallReturnType(FuncT->getResultType(),
4564 TheCall->setType(FuncT->getCallResultType(Context));
4565 TheCall->setValueKind(Expr::getValueKindForType(FuncT->getResultType()));
4567 const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FuncT);
4573 assert(isa<FunctionNoProtoType>(FuncT) && "Unknown FunctionType!");