Home | History | Annotate | Download | only in Sema

Lines Matching defs:FnTy

1972 static std::string getFunctionQualifiersAsString(const FunctionProtoType *FnTy){
1974 Qualifiers::fromCVRMask(FnTy->getTypeQuals()).getAsString();
1976 switch (FnTy->getRefQualifier()) {
2475 const FunctionProtoType *FnTy = T->getAs<FunctionProtoType>();
2476 assert(FnTy && "Why oh why is there not a FunctionProtoType here?");
2502 !(FnTy->getTypeQuals() & DeclSpec::TQ_const)) {
2504 FunctionProtoType::ExtProtoInfo EPI = FnTy->getExtProtoInfo();
2506 T = Context.getFunctionType(FnTy->getResultType(),
2507 FnTy->arg_type_begin(),
2508 FnTy->getNumArgs(), EPI);
2551 << getFunctionQualifiersAsString(FnTy)
2555 FunctionProtoType::ExtProtoInfo EPI = FnTy->getExtProtoInfo();
2559 T = Context.getFunctionType(FnTy->getResultType(),
2560 FnTy->arg_type_begin(),
2561 FnTy->getNumArgs(), EPI);