| /freebsd-14.2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/json/ |
| H A D | tst.general.d | 23 #define TST(name) \ macro 38 TST("empty array"); 42 TST("one-element array: integer"); 53 TST("one-element array: float"); 57 TST("one-element array: float + exponent"); 69 TST("one-element array: string"); 73 TST("alternative first-element indexing"); 80 TST("one-element array: object"); 86 TST("many-element array: integers"); 92 TST("many-element array: multiple types"); [all …]
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | DeclSpec.h | 276 typedef TypeSpecifierType TST; typedef 428 static bool isTypeRep(TST T) { in isTypeRep() 432 static bool isExprRep(TST T) { in isExprRep() 436 static bool isTemplateIdRep(TST T) { in isTemplateIdRep() 443 static bool isDeclRep(TST T) { in isDeclRep() 511 TST getTypeSpecType() const { return (TST)TypeSpecType; } in getTypeSpecType() 554 assert(isDeclRep((TST)TypeSpecType) || isTypeRep((TST)TypeSpecType) || in getTypeSpecTypeNameLoc() 555 isExprRep((TST)TypeSpecType)); in getTypeSpecTypeNameLoc() 748 assert(isDeclRep((TST) TypeSpecType)); in UpdateDeclRep() 752 assert(isTypeRep((TST) TypeSpecType)); in UpdateTypeRep() [all …]
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Sema/ |
| H A D | DeclSpec.cpp | 557 const char *DeclSpec::getSpecifierName(DeclSpec::TST T, in getSpecifierName() 750 bool DeclSpec::SetTypeSpecType(TST T, SourceLocation Loc, in SetTypeSpecType() 758 bool DeclSpec::SetTypeSpecType(TST T, SourceLocation TagKwLoc, in SetTypeSpecType() 781 bool DeclSpec::SetTypeSpecType(TST T, SourceLocation Loc, in SetTypeSpecType() 803 bool DeclSpec::SetTypeSpecType(TST T, SourceLocation Loc, in SetTypeSpecType() 844 bool DeclSpec::SetTypeSpecType(TST T, SourceLocation Loc, in SetTypeSpecType() 1253 << getSpecifierName((TST)TypeSpecType, Policy); in Finish() 1276 << getSpecifierName((TST)TypeSpecType, Policy); in Finish() 1333 << getSpecifierName((TST)TypeSpecType, Policy); in Finish() 1455 assert(!TypeSpecOwned || isDeclRep((TST) TypeSpecType)); in Finish() [all …]
|
| H A D | SemaAttr.cpp | 156 if (auto *TST = in inferGslPointerAttribute() local 160 TST->getTemplateName().getAsTemplateDecl()->getTemplatedDecl()); in inferGslPointerAttribute()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/ |
| H A D | ASTDiagnostic.cpp | 119 if (!TST->isTypeAlias()) { in desugarForDiagnostic() 983 : TST(TST), Index(0), CurrentTA(nullptr), EndTA(nullptr) { in InternalIterator() 984 if (!TST) return; in InternalIterator() 1005 bool isValid() const { return TST; } in isValid() 1071 : SugaredIterator(TST), in TSTiterator() 1073 (TST->isSugared() && !TST->isTypeAlias()) in TSTiterator() 1121 return TST; in GetTemplateSpecializationType() 1398 while (TST) { in makeTemplateList() 1399 TemplateList.push_back(TST); in makeTemplateList() 1400 if (!TST->isTypeAlias()) in makeTemplateList() [all …]
|
| H A D | QualTypeNames.cpp | 129 if (const auto *TST = dyn_cast<const TemplateSpecializationType>(TypePtr)) { in getFullyQualifiedTemplateType() local 134 for (TemplateArgument Arg : TST->template_arguments()) { in getFullyQualifiedTemplateType() 144 TST->getTemplateName(), FQArgs, in getFullyQualifiedTemplateType() 145 TST->getCanonicalTypeInternal()); in getFullyQualifiedTemplateType() 329 } else if (const auto *TST = dyn_cast<TemplateSpecializationType>(TypePtr)) { in createNestedNameSpecifierForScopeOf() local 330 Decl = TST->getTemplateName().getAsTemplateDecl(); in createNestedNameSpecifierForScopeOf()
|
| H A D | CXXInheritance.cpp | 250 const TemplateSpecializationType *TST = in lookupInBases() local 252 if (!TST) { in lookupInBases() 256 TemplateName TN = TST->getTemplateName(); in lookupInBases() 414 const TemplateSpecializationType *TST = in findOrdinaryMemberInDependentClasses() local 416 if (!TST) { in findOrdinaryMemberInDependentClasses() 422 TemplateName TN = TST->getTemplateName(); in findOrdinaryMemberInDependentClasses()
|
| H A D | ItaniumMangle.cpp | 1295 if (const auto *TST = type->getAs<TemplateSpecializationType>()) { in manglePrefix() local 1296 if (!mangleSubstitution(QualType(TST, 0))) { in manglePrefix() 1297 mangleTemplatePrefix(TST->getTemplateName()); in manglePrefix() 1302 mangleTemplateArgs(TST->getTemplateName(), TST->template_arguments()); in manglePrefix() 1303 addSubstitution(QualType(TST, 0)); in manglePrefix() 2481 const TemplateSpecializationType *TST = in mangleUnresolvedTypeOrSimpleId() local 2483 TemplateName TN = TST->getTemplateName(); in mangleUnresolvedTypeOrSimpleId() 2532 mangleTemplateArgs(TemplateName(), TST->template_arguments()); in mangleUnresolvedTypeOrSimpleId() 2953 if (const TemplateSpecializationType *TST in mangleType() local 2955 if (!TST->isTypeAlias()) in mangleType()
|
| H A D | TypePrinter.cpp | 1441 const TemplateSpecializationType *TST = in printTag() local 1443 Args = TST->template_arguments(); in printTag() 1469 if (auto *TST = dyn_cast<TemplateSpecializationType>(T)) in printRecordBefore() local 1470 return printTemplateId(TST, OS, /*FullyQualify=*/true); in printRecordBefore()
|
| H A D | JSONNodeDumper.cpp | 766 const TemplateSpecializationType *TST) { in VisitTemplateSpecializationType() argument 767 attributeOnlyIfTrue("isAlias", TST->isTypeAlias()); in VisitTemplateSpecializationType() 771 TST->getTemplateName().print(OS, PrintPolicy); in VisitTemplateSpecializationType()
|
| H A D | DeclPrinter.cpp | 1145 if (const auto *TST = in VisitCXXRecordDecl() local 1147 Args = TST->template_arguments(); in VisitCXXRecordDecl()
|
| /freebsd-14.2/crypto/openssl/doc/man3/ |
| H A D | TS_VERIFY_CTX_set_certs.pod | 26 needs to sign the response data - the TimeStampToken (TST) - with its private 27 key. Then the client shall verify the received TST by the server's certificate 31 verifying a TST. B<ctx> is the verification context created in advance and
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Index/ |
| H A D | IndexTypeSourceInfo.cpp | 215 const TemplateSpecializationType *TST = in VisitDependentNameTypeLoc() local 217 if (!TST) in VisitDependentNameTypeLoc() 219 TemplateName TN = TST->getTemplateName(); in VisitDependentNameTypeLoc()
|
| H A D | IndexBody.cpp | 173 const TemplateSpecializationType *TST = in indexDependentReference() local 175 if (!TST) in indexDependentReference() 177 TemplateName TN = TST->getTemplateName(); in indexDependentReference()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGHLSLRuntime.cpp | 231 const auto *TST = ResourceTy->getAs<TemplateSpecializationType>(); in calculateElementType() local 232 assert(TST && "Resource types must be template specializations"); in calculateElementType() 233 ArrayRef<TemplateArgument> Args = TST->template_arguments(); in calculateElementType()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AVR/ |
| H A D | AVRISelLowering.h | 70 TST, enumerator
|
| H A D | AVRISelLowering.cpp | 268 NODE(TST); in getTargetNodeName() 816 Cmp = DAG.getNode(AVRISD::TST, DL, MVT::Glue, Top); in getAVRCmp() 854 Cmp = DAG.getNode(AVRISD::TST, DL, MVT::Glue, Top); in getAVRCmp() 864 Cmp = DAG.getNode(AVRISD::TST, DL, MVT::Glue, in getAVRCmp()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Parse/ |
| H A D | Parser.h | 1096 void ConsumeExtraSemi(ExtraSemiKind Kind, DeclSpec::TST T = TST_unspecified); 2188 void ParseMicrosoftIfExistsClassDeclaration(DeclSpec::TST TagType, 2482 void ParseStructUnionBody(SourceLocation StartLoc, DeclSpec::TST TagType, 3171 DeclSpec::TST TypeTransformTokToDeclSpec(); 3279 DeclSpec::TST TagType, Decl *Tag); 3400 DeclSpec::TST TagType = DeclSpec::TST_unspecified,
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Parse/ |
| H A D | Parser.cpp | 185 void Parser::ConsumeExtraSemi(ExtraSemiKind Kind, DeclSpec::TST TST) { in ConsumeExtraSemi() argument 213 << Kind << DeclSpec::getSpecifierName(TST, in ConsumeExtraSemi() 1160 auto LengthOfTSTToken = [](DeclSpec::TST TKind) { in ParseDeclOrFunctionDefInternal()
|
| H A D | ParseDeclCXX.cpp | 1199 DeclSpec::TST Parser::TypeTransformTokToDeclSpec() { in TypeTransformTokToDeclSpec() 1215 DeclSpec::TST TypeTransformTST = TypeTransformTokToDeclSpec(); in MaybeParseTypeTransformTypeSpecifier() 1551 DeclSpec::TST TagType; in ParseClassSpecifier() 3348 AccessSpecifier &AS, ParsedAttributes &AccessAttrs, DeclSpec::TST TagType, in ParseCXXClassMemberDeclarationWithPragmas() 3656 CurAS, AccessAttrs, static_cast<DeclSpec::TST>(TagType), TagDecl); in ParseCXXMemberSpecification() 4894 DeclSpec::TST TagType, ParsedAttributes &AccessAttrs, in ParseMicrosoftIfExistsClassDeclaration()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | JSONNodeDumper.h | 236 void VisitTemplateSpecializationType(const TemplateSpecializationType *TST);
|
| H A D | Type.h | 5715 InjectedClassNameType(CXXRecordDecl *D, QualType TST) 5718 Decl(D), InjectedType(TST) { 5719 assert(isa<TemplateSpecializationType>(TST)); 5720 assert(!TST.hasQualifiers()); 5721 assert(TST->isDependentType()); 7510 if (auto *TST = getAs<TemplateSpecializationType>()) 7511 return TST->isTypeAlias();
|
| /freebsd-14.2/sbin/ping/ |
| H A D | ping6.c | 169 #define TST(bit) (A(bit) & B(bit)) macro 1611 if (TST(seq % mx_dup_ck)) { in pr_pack() 1666 if (TST(seq % mx_dup_ck)) { in pr_pack()
|
| H A D | ping.c | 121 #define TST(bit) (A(bit) & B(bit)) macro 1198 if (TST(seq % mx_dup_ck)) { in pr_pack()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/M68k/ |
| H A D | M68kInstrControl.td | 18 /// RTS [x] Scc [~] TST [ ]
|