Searched refs:TAs (Results 1 – 4 of 4) sorted by relevance
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | CheckExprLifetime.cpp | 317 const auto &TAs = CTSD->getTemplateArgs(); in isContainerOfPointer() local 318 return TAs.size() > 0 && TAs[0].getKind() == TemplateArgument::Type && in isContainerOfPointer() 319 isPointerLikeType(TAs[0].getAsType()); in isContainerOfPointer() 330 const auto &TAs = CTSD->getTemplateArgs(); in isContainerOfOwner() local 331 return TAs.size() > 0 && TAs[0].getKind() == TemplateArgument::Type && in isContainerOfOwner() 332 isRecordWithAttr<OwnerAttr>(TAs[0].getAsType()); in isContainerOfOwner() 339 const auto &TAs = CTSD->getTemplateArgs(); in isStdInitializerListOfPointer() local 341 RD->getName() == "initializer_list" && TAs.size() > 0 && in isStdInitializerListOfPointer() 342 TAs[0].getKind() == TemplateArgument::Type && in isStdInitializerListOfPointer() 343 isPointerLikeType(TAs[0].getAsType()); in isStdInitializerListOfPointer()
|
| H A D | SemaTemplate.cpp | 3380 TemplateArgumentListInfo TAs; in checkBuiltinTemplateIdType() local 3381 TAs.addArgument(TemplateArgumentLoc( in checkBuiltinTemplateIdType() 3385 return SemaRef.CheckTemplateIdType(HasTypeMember, TemplateLoc, TAs); in checkBuiltinTemplateIdType()
|
| /freebsd/contrib/bearssl/samples/ |
| H A D | client_basic.c | 203 static const br_x509_trust_anchor TAs[2] = { variable 283 br_ssl_client_init_full(&sc, &xc, TAs, TAs_NUM); in main()
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | ASTContext.cpp | 14148 auto TAs = getCommonTypes(Ctx, OX->getTypeArgsAsWritten(), in getCommonNonSugarTypeNode() local 14151 Ctx.getCommonSugaredType(OX->getBaseType(), OY->getBaseType()), TAs, in getCommonNonSugarTypeNode()
|