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

12

/external/clang/include/clang/Sema/
H A DDeclSpec.h250 typedef TypeSpecifierType TST; typedef in class:clang::DeclSpec
251 static const TST TST_unspecified = clang::TST_unspecified;
252 static const TST TST_void = clang::TST_void;
253 static const TST TST_char = clang::TST_char;
254 static const TST TST_wchar = clang::TST_wchar;
255 static const TST TST_char16 = clang::TST_char16;
256 static const TST TST_char32 = clang::TST_char32;
257 static const TST TST_int = clang::TST_int;
258 static const TST TST_int128 = clang::TST_int128;
259 static const TST TST_hal
[all...]
/external/clang/lib/Sema/
H A DDeclSpec.cpp383 const char *DeclSpec::getSpecifierName(DeclSpec::TST T) {
469 assert(!isInvalid && "auto SCS -> TST recovery failed");
517 PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType);
544 bool DeclSpec::SetTypeSpecType(TST T, SourceLocation Loc,
551 bool DeclSpec::SetTypeSpecType(TST T, SourceLocation TagKwLoc,
559 PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType);
571 bool DeclSpec::SetTypeSpecType(TST T, SourceLocation Loc,
578 PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType);
590 bool DeclSpec::SetTypeSpecType(TST T, SourceLocation Loc,
597 bool DeclSpec::SetTypeSpecType(TST
[all...]
H A DSemaTemplateInstantiate.cpp138 const TemplateSpecializationType *TST local
140 Result.addOuterTemplateArguments(TST->getArgs(), TST->getNumArgs());
H A DSemaTemplate.cpp1657 if (const TemplateSpecializationType *TST
1659 if (TemplateDecl *Template = TST->getTemplateName().getAsTemplateDecl()) {
1763 } else if (const TemplateSpecializationType *TST
1765 if (TemplateDecl *Template = TST->getTemplateName().getAsTemplateDecl()) {
2072 // If so, the canonical type of this TST is the injected
H A DSemaDeclCXX.cpp5098 else if (const TemplateSpecializationType *TST =
5100 if (TST->isTypeAlias())
5572 } else if (const TemplateSpecializationType *TST =
5575 TST->getTemplateName().getAsTemplateDecl());
5576 Arguments = TST->getArgs();
H A DSemaDecl.cpp352 /// so, this returns the TST for the tag corresponding to it (TST_enum,
355 DeclSpec::TST Sema::isTagName(IdentifierInfo &II, Scope *S) {
2769 DeclSpec::TST TypeSpecType = DS.getTypeSpecType();
5488 else if (const TemplateSpecializationType *TST =
5490 IsTypeAlias = TST->isTypeAlias();
/external/clang/lib/AST/
H A DASTDiagnostic.cpp64 if (const TemplateSpecializationType *TST
66 if (!TST->isTypeAlias())
635 /// TST - the template specialization whose arguments this iterator
637 const TemplateSpecializationType *TST; member in struct:__anon3469::TemplateDiff::TSTiterator
639 /// Index - the index of the template argument in TST.
651 TSTiterator(const TemplateSpecializationType *TST) argument
652 : TST(TST), Index(0), CurrentTA(0), EndTA(0) {
656 TemplateArgument TA = TST->getArg(0);
673 return Index == TST
[all...]
H A DItaniumMangle.cpp733 if (const TemplateSpecializationType *TST =
735 if (!mangleSubstitution(QualType(TST, 0))) {
736 mangleTemplatePrefix(TST->getTemplateName());
741 mangleTemplateArgs(TST->getTemplateName(), TST->getArgs(),
742 TST->getNumArgs());
743 addSubstitution(QualType(TST, 0));
1763 if (const TemplateSpecializationType *TST
1765 if (!TST->isTypeAlias())
H A DTypePrinter.cpp897 const TemplateSpecializationType *TST = local
899 Args = TST->getArgs();
900 NumArgs = TST->getNumArgs();
H A DASTContext.cpp1463 const TemplateSpecializationType *TST = cast<TemplateSpecializationType>(T); local
1466 if (TST->isTypeAlias())
1467 return getTypeInfo(TST->getAliasedType().getTypePtr());
2588 QualType TST) const {
2598 new (*this, TypeAlignment) InjectedClassNameType(Decl, TST);
2799 QualType TST = getTemplateSpecializationType(Name, Args, Underlying); local
2801 TypeSourceInfo *DI = CreateTypeSourceInfo(TST);
/external/ping/
H A Dping_common.h36 #define TST(bit) (A(bit) & B(bit)) macro
H A Dping.c762 } else if (TST(seq % mx_dup_ck)) {
/external/v8/src/arm/
H A Dconstants-arm.h199 TST = 8 << 21, // Test. enumerator in enum:v8::internal::Opcode
H A Dassembler-arm.cc511 (I | TST | S);
1123 addrmod1(cond | TST | S, src1, r0, src2);
/external/webkit/Source/JavaScriptCore/assembler/
H A DARMAssembler.h133 TST = (0x8 << 21), enumerator in enum:JSC::ARMAssembler::__anon14896
363 emitInst(static_cast<ARMWord>(cc) | TST | SET_CC, 0, rn, op2);
/external/clang/lib/Parse/
H A DParser.cpp223 void Parser::ConsumeExtraSemi(ExtraSemiKind Kind, unsigned TST) { argument
251 << Kind << DeclSpec::getSpecifierName((DeclSpec::TST)TST)
H A DParseDeclCXX.cpp1034 DeclSpec::TST TagType;
2332 ParseMicrosoftIfExistsClassDeclaration((DeclSpec::TST)TagType, CurAS);
3024 void Parser::ParseMicrosoftIfExistsClassDeclaration(DeclSpec::TST TagType,
3054 ParseMicrosoftIfExistsClassDeclaration((DeclSpec::TST)TagType, CurAS);
/external/ping6/
H A Dping6.c172 #define TST(bit) (A(bit) & B(bit)) macro
1500 if (TST(seq % mx_dup_ck)) {
1549 if (TST(seq % mx_dup_ck)) {
/external/clang/tools/libclang/
H A DIndexingContext.cpp137 TST = T->getAs<TemplateSpecializationType>()) {
138 BaseD = TST->getTemplateName().getAsTemplateDecl();
/external/clang/include/clang/AST/
H A DType.h3768 InjectedClassNameType(CXXRecordDecl *D, QualType TST) argument
3773 Decl(D), InjectedType(TST) {
3774 assert(isa<TemplateSpecializationType>(TST));
3775 assert(!TST.hasQualifiers());
3776 assert(TST->isDependentType());
3850 /// getKeywordForTypeSpec - Converts a type specifier (DeclSpec::TST)
3854 /// getTagTypeKindForTypeSpec - Converts a type specifier (DeclSpec::TST)
H A DASTContext.h951 QualType getInjectedClassNameType(CXXRecordDecl *Decl, QualType TST) const;
/external/clang/include/clang/Parse/
H A DParser.h645 void ConsumeExtraSemi(ExtraSemiKind Kind, unsigned TST = TST_unspecified);
1498 void ParseMicrosoftIfExistsClassDeclaration(DeclSpec::TST TagType,
/external/llvm/test/MC/ARM/
H A Dbasic-thumb-instructions.s621 @ TST
/external/clang/lib/CodeGen/
H A DCGDebugInfo.cpp190 const TemplateSpecializationType *TST = local
192 Args = TST->getArgs();
193 NumArgs = TST->getNumArgs();
/external/clang/lib/Serialization/
H A DASTReader.cpp4073 QualType TST = readType(*Loc.F, Record, Idx); // probably derivable local
4077 QualType(new (Context, TypeAlignment) InjectedClassNameType(D, TST), 0);
4202 TL.setWrittenTypeSpec(static_cast<DeclSpec::TST>(Record[Idx++]));

Completed in 569 milliseconds

12