Searched refs:TST (Results 1 - 25 of 33) sorted by relevance

12

/freebsd-13-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/json/
H A Dtst.general.d23 #define TST(name) \
38 TST("empty array");
42 TST("one-element array: integer");
49 TST("one-element array: hex integer (not in spec, not supported)");
53 TST("one-element array: float");
57 TST("one-element array: float + exponent");
61 TST("one-element array: integer + whitespace");
65 TST("one-element array: integer + exponent + whitespace");
69 TST("one-element array: string");
73 TST("alternativ
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DDeclSpec.h272 typedef TypeSpecifierType TST; typedef in class:clang::DeclSpec
273 static const TST TST_unspecified = clang::TST_unspecified;
274 static const TST TST_void = clang::TST_void;
275 static const TST TST_char = clang::TST_char;
276 static const TST TST_wchar = clang::TST_wchar;
277 static const TST TST_char8 = clang::TST_char8;
278 static const TST TST_char16 = clang::TST_char16;
279 static const TST TST_char32 = clang::TST_char32;
280 static const TST TST_int = clang::TST_int;
281 static const TST TST_int12
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DDeclSpec.cpp531 const char *DeclSpec::getSpecifierName(DeclSpec::TST T,
645 assert(!isInvalid && "auto SCS -> TST recovery failed");
715 bool DeclSpec::SetTypeSpecType(TST T, SourceLocation Loc,
723 bool DeclSpec::SetTypeSpecType(TST T, SourceLocation TagKwLoc,
734 PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType, Policy);
746 bool DeclSpec::SetTypeSpecType(TST T, SourceLocation Loc,
756 PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType, Policy);
768 bool DeclSpec::SetTypeSpecType(TST T, SourceLocation Loc,
776 bool DeclSpec::SetTypeSpecType(TST T, SourceLocation TagKwLoc,
788 PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecTyp
[all...]
H A DSemaAttr.cpp143 if (auto *TST =
147 TST->getTemplateName().getAsTemplateDecl()->getTemplatedDecl());
H A DSemaLookup.cpp3786 const auto *TST = BaseType->getAs<TemplateSpecializationType>();
3787 if (!TST)
3789 TemplateName TN = TST->getTemplateName();
H A DSemaTemplateInstantiate.cpp179 const TemplateSpecializationType *TST = local
182 llvm::makeArrayRef(TST->getArgs(), TST->getNumArgs()));
H A DSemaDecl.cpp193 else if (auto *TST = Base.getType()->getAs<TemplateSpecializationType>()) {
196 if (!TST || !TST->isDependentType())
198 auto *TD = TST->getTemplateName().getAsTemplateDecl();
608 /// so, this returns the TST for the tag corresponding to it (TST_enum,
611 DeclSpec::TST Sema::isTagName(IdentifierInfo &II, Scope *S) {
4528 static unsigned GetDiagnosticTypeSpecifierID(DeclSpec::TST T) {
4789 DeclSpec::TST TypeSpecType = DS.getTypeSpecType();
H A DSemaTemplate.cpp2962 if (const TemplateSpecializationType *TST
2964 if (TemplateDecl *Template = TST->getTemplateName().getAsTemplateDecl()) {
3101 } else if (const TemplateSpecializationType *TST
3103 if (TemplateDecl *Template = TST->getTemplateName().getAsTemplateDecl()) {
3649 // If so, the canonical type of this TST is the injected
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DASTDiagnostic.cpp109 if (const TemplateSpecializationType *TST =
111 if (!TST->isTypeAlias()) {
114 for (unsigned I = 0, N = TST->getNumArgs(); I != N; ++I) {
115 const TemplateArgument &Arg = TST->getArg(I);
125 TST->getTemplateName(), Args, QT);
933 /// TST - the template specialization whose arguments this iterator
935 const TemplateSpecializationType *TST; member in struct:__anon1557::TemplateDiff::TSTiterator::InternalIterator
937 /// Index - the index of the template argument in TST.
949 InternalIterator(const TemplateSpecializationType *TST) argument
950 : TST(TS
1037 TSTiterator(ASTContext &Context, const TemplateSpecializationType *TST) argument
1359 makeTemplateList( SmallVectorImpl<const TemplateSpecializationType *> &TemplateList, const TemplateSpecializationType *TST) argument
[all...]
H A DQualTypeNames.cpp125 if (const auto *TST = dyn_cast<const TemplateSpecializationType>(TypePtr)) {
128 for (TemplateSpecializationType::iterator I = TST->begin(), E = TST->end();
142 TST->getTemplateName(), FQArgs,
143 TST->getCanonicalTypeInternal());
327 } else if (const auto *TST = dyn_cast<TemplateSpecializationType>(TypePtr)) {
328 Decl = TST->getTemplateName().getAsTemplateDecl();
H A DCXXInheritance.cpp273 const TemplateSpecializationType *TST =
275 if (!TST) {
279 TemplateName TN = TST->getTemplateName();
446 const TemplateSpecializationType *TST =
448 if (!TST) {
454 TemplateName TN = TST->getTemplateName();
H A DItaniumMangle.cpp1099 if (const auto *TST = type->getAs<TemplateSpecializationType>()) {
1100 if (!mangleSubstitution(QualType(TST, 0))) {
1101 mangleTemplatePrefix(TST->getTemplateName());
1106 mangleTemplateArgs(TST->getArgs(), TST->getNumArgs());
1107 addSubstitution(QualType(TST, 0));
2148 const TemplateSpecializationType *TST = local
2150 TemplateName TN = TST->getTemplateName();
2188 mangleTemplateArgs(TST->getArgs(), TST
[all...]
H A DJSONNodeDumper.cpp662 const TemplateSpecializationType *TST) {
663 attributeOnlyIfTrue("isAlias", TST->isTypeAlias());
667 TST->getTemplateName().print(OS, PrintPolicy);
661 VisitTemplateSpecializationType( const TemplateSpecializationType *TST) argument
H A DDeclPrinter.cpp974 if (const auto *TST =
976 Args = TST->template_arguments();
/freebsd-13-stable/contrib/llvm-project/clang/lib/Index/
H A DIndexTypeSourceInfo.cpp184 const TemplateSpecializationType *TST = local
186 if (!TST)
188 TemplateName TN = TST->getTemplateName();
H A DIndexBody.cpp158 const TemplateSpecializationType *TST = local
160 if (!TST)
162 TemplateName TN = TST->getTemplateName();
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AVR/
H A DAVRISelLowering.h58 TST, enumerator in enum:llvm::AVRISD::NodeType
H A DAVRISelLowering.cpp259 NODE(TST);
550 Cmp = DAG.getNode(AVRISD::TST, DL, MVT::Glue, Top);
588 Cmp = DAG.getNode(AVRISD::TST, DL, MVT::Glue, Top);
598 Cmp = DAG.getNode(AVRISD::TST, DL, MVT::Glue,
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
H A DJSONNodeDumper.h222 void VisitTemplateSpecializationType(const TemplateSpecializationType *TST);
H A DType.h5258 InjectedClassNameType(CXXRecordDecl *D, QualType TST)
5261 Decl(D), InjectedType(TST) {
5262 assert(isa<TemplateSpecializationType>(TST));
5263 assert(!TST.hasQualifiers());
5264 assert(TST->isDependentType());
5349 /// Converts a type specifier (DeclSpec::TST) into an elaborated type keyword.
5352 /// Converts a type specifier (DeclSpec::TST) into a tag type kind.
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Parse/
H A DParser.h1038 void ConsumeExtraSemi(ExtraSemiKind Kind, DeclSpec::TST T = TST_unspecified);
2128 void ParseMicrosoftIfExistsClassDeclaration(DeclSpec::TST TagType,
2354 void ParseStructUnionBody(SourceLocation StartLoc, DeclSpec::TST TagType,
3008 DeclSpec::TST TagType, Decl *Tag);
3107 bool Delayed = false, DeclSpec::TST TagType = DeclSpec::TST_unspecified,
/freebsd-13-stable/contrib/llvm-project/clang/lib/Parse/
H A DParser.cpp178 void Parser::ConsumeExtraSemi(ExtraSemiKind Kind, DeclSpec::TST TST) { argument
206 << Kind << DeclSpec::getSpecifierName(TST,
1017 auto LengthOfTSTToken = [](DeclSpec::TST TKind) {
H A DParseDeclCXX.cpp1396 DeclSpec::TST TagType;
3069 DeclSpec::TST TagType, Decl *TagDecl) {
3347 CurAS, AccessAttrs, static_cast<DeclSpec::TST>(TagType), TagDecl);
4414 DeclSpec::TST TagType, ParsedAttributes &AccessAttrs,
/freebsd-13-stable/sbin/ping/
H A Dping.c124 #define TST(bit) (A(bit) & B(bit)) macro
1214 if (TST(seq % mx_dup_ck)) {
H A Dping6.c172 #define TST(bit) (A(bit) & B(bit)) macro
1653 if (TST(seq % mx_dup_ck)) {
1708 if (TST(seq % mx_dup_ck)) {

Completed in 327 milliseconds

12