Searched defs:TST (Results 1 - 11 of 11) sorted by relevance

/external/clang/lib/AST/
H A DTypePrinter.cpp941 const TemplateSpecializationType *TST = local
943 Args = TST->getArgs();
944 NumArgs = TST->getNumArgs();
H A DASTDiagnostic.cpp70 if (const TemplateSpecializationType *TST
72 if (!TST->isTypeAlias())
729 /// TST - the template specialization whose arguments this iterator
731 const TemplateSpecializationType *TST; member in struct:__anon17714::TemplateDiff::TSTiterator
737 /// Index - the index of the template argument in TST.
749 TSTiterator(ASTContext &Context, const TemplateSpecializationType *TST) argument
750 : TST(TST),
751 DesugarTST(GetTemplateSpecializationType(Context, TST->desugar())),
756 TemplateArgument TA = TST
1030 makeTemplateList( SmallVectorImpl<const TemplateSpecializationType *> &TemplateList, const TemplateSpecializationType *TST) argument
[all...]
H A DASTContext.cpp2925 QualType TST) const {
2935 new (*this, TypeAlignment) InjectedClassNameType(Decl, TST);
3134 QualType TST = getTemplateSpecializationType(Name, Args, Underlying); local
3136 TypeSourceInfo *DI = CreateTypeSourceInfo(TST);
/external/clang/lib/Parse/
H A DParser.cpp179 void Parser::ConsumeExtraSemi(ExtraSemiKind Kind, unsigned TST) { argument
207 << Kind << DeclSpec::getSpecifierName((DeclSpec::TST)TST,
/external/clang/lib/Sema/
H A DSemaTemplateInstantiate.cpp169 const TemplateSpecializationType *TST = local
172 llvm::makeArrayRef(TST->getArgs(), TST->getNumArgs()));
H A DSemaDecl.cpp149 auto *TST = Base.getType()->getAs<TemplateSpecializationType>(); local
150 if (!TST || !TST->isDependentType())
152 auto *TD = TST->getTemplateName().getAsTemplateDecl();
459 /// so, this returns the TST for the tag corresponding to it (TST_enum,
462 DeclSpec::TST Sema::isTagName(IdentifierInfo &II, Scope *S) {
3514 DeclSpec::TST TypeSpecType = DS.getTypeSpecType();
/external/pcre/dist/sljit/
H A DsljitNativeARM_T2_32.c163 #define TST 0x4200 macro
759 return push_inst16(compiler, TST | RD3(arg1) | RN3(arg2));
/external/chromium_org/v8/src/arm/
H A Dconstants-arm.h138 TST = 8 << 21, // Test. enumerator in enum:v8::internal::Opcode
/external/clang/include/clang/Sema/
H A DDeclSpec.h258 typedef TypeSpecifierType TST; typedef in class:clang::DeclSpec
259 static const TST TST_unspecified = clang::TST_unspecified;
260 static const TST TST_void = clang::TST_void;
261 static const TST TST_char = clang::TST_char;
262 static const TST TST_wchar = clang::TST_wchar;
263 static const TST TST_char16 = clang::TST_char16;
264 static const TST TST_char32 = clang::TST_char32;
265 static const TST TST_int = clang::TST_int;
266 static const TST TST_int128 = clang::TST_int128;
267 static const TST TST_hal
[all...]
/external/clang/lib/Serialization/
H A DASTReader.cpp5408 QualType TST = readType(*Loc.F, Record, Idx); // probably derivable local
5417 T = new (Context, TypeAlignment) InjectedClassNameType(D, TST);
5566 TL.setWrittenTypeSpec(static_cast<DeclSpec::TST>(Record[Idx++]));
/external/clang/include/clang/AST/
H A DType.h3883 InjectedClassNameType(CXXRecordDecl *D, QualType TST) argument
3888 Decl(D), InjectedType(TST) {
3889 assert(isa<TemplateSpecializationType>(TST));
3890 assert(!TST.hasQualifiers());
3891 assert(TST->isDependentType());
3964 /// getKeywordForTypeSpec - Converts a type specifier (DeclSpec::TST)
3968 /// getTagTypeKindForTypeSpec - Converts a type specifier (DeclSpec::TST)

Completed in 645 milliseconds