Searched defs:FnTy (Results 1 - 3 of 3) sorted by relevance

/external/clang/lib/CodeGen/
H A DCGDebugInfo.cpp722 llvm::DIType FnTy local
728 llvm::DIArray Args = llvm::DICompositeType(FnTy).getTypeArray();
/external/clang/lib/Sema/
H A DSemaType.cpp2363 const FunctionProtoType *FnTy = T->getAs<FunctionProtoType>(); local
2364 assert(FnTy && "Why oh why is there not a FunctionProtoType here?");
2388 !(FnTy->getTypeQuals() & DeclSpec::TQ_const)) {
2390 FunctionProtoType::ExtProtoInfo EPI = FnTy->getExtProtoInfo();
2392 T = Context.getFunctionType(FnTy->getResultType(),
2393 FnTy->arg_type_begin(),
2394 FnTy->getNumArgs(), EPI);
2402 if ((FnTy->getTypeQuals() != 0 || FnTy->getRefQualifier()) &&
2411 if (FnTy
[all...]
H A DSemaOverload.cpp7244 const FunctionProtoType *FnTy = Fn->getType()->getAs<FunctionProtoType>(); local
7263 if (MinParams != FnTy->getNumArgs() ||
7264 FnTy->isVariadic() || FnTy->isTemplateVariadic())
7273 if (MinParams != FnTy->getNumArgs())
7277 modeCount = FnTy->getNumArgs();

Completed in 85 milliseconds