HomeSort by: relevance | last modified time | path
    Searched refs:TypeAliasTemplateDecl (Results 1 - 25 of 27) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/clang/lib/AST/
Comment.cpp 343 const TypeAliasTemplateDecl *TAT = cast<TypeAliasTemplateDecl>(CommentDecl);
DeclTemplate.cpp 1096 // TypeAliasTemplateDecl Implementation
1099 TypeAliasTemplateDecl *TypeAliasTemplateDecl::Create(ASTContext &C,
1106 return new (C, DC) TypeAliasTemplateDecl(C, DC, L, Name, Params, Decl);
1109 TypeAliasTemplateDecl *TypeAliasTemplateDecl::CreateDeserialized(ASTContext &C,
1111 return new (C, ID) TypeAliasTemplateDecl(C, nullptr, SourceLocation(),
1116 TypeAliasTemplateDecl::newCommon(ASTContext &C) const {
TextNodeDumper.cpp 1849 const TypeAliasTemplateDecl *D) {
ASTImporter.cpp 489 ExpectedDecl VisitTypeAliasTemplateDecl(TypeAliasTemplateDecl *D);
2558 ASTNodeImporter::VisitTypeAliasTemplateDecl(TypeAliasTemplateDecl *D) {
2579 if (auto *FoundAlias = dyn_cast<TypeAliasTemplateDecl>(FoundDecl))
2600 TypeAliasTemplateDecl *ToAlias;
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
DeclTemplate.h 2516 class TypeAliasTemplateDecl : public RedeclarableTemplateDecl {
2520 TypeAliasTemplateDecl(ASTContext &C, DeclContext *DC, SourceLocation L,
2542 TypeAliasTemplateDecl *getCanonicalDecl() override {
2543 return cast<TypeAliasTemplateDecl>(
2546 const TypeAliasTemplateDecl *getCanonicalDecl() const {
2547 return cast<TypeAliasTemplateDecl>(
2553 TypeAliasTemplateDecl *getPreviousDecl() {
2554 return cast_or_null<TypeAliasTemplateDecl>(
2557 const TypeAliasTemplateDecl *getPreviousDecl() const {
2558 return cast_or_null<TypeAliasTemplateDecl>(
    [all...]
TextNodeDumper.h 341 void VisitTypeAliasTemplateDecl(const TypeAliasTemplateDecl *D);
ASTNodeTraverser.h 515 void VisitTypeAliasTemplateDecl(const TypeAliasTemplateDecl *D) {
Decl.h 76 class TypeAliasTemplateDecl;
3265 TypeAliasTemplateDecl *Template;
3280 TypeAliasTemplateDecl *getDescribedAliasTemplate() const { return Template; }
3281 void setDescribedAliasTemplate(TypeAliasTemplateDecl *TAT) { Template = TAT; }
RecursiveASTVisitor.h 1830 DEF_TRAVERSE_DECL(TypeAliasTemplateDecl, {
  /src/external/apache2/llvm/dist/clang/tools/libclang/
CXIndexDataConsumer.h 25 class TypeAliasTemplateDecl;
411 bool handleTypeAliasTemplate(const TypeAliasTemplateDecl *D);
CursorVisitor.h 199 bool VisitTypeAliasTemplateDecl(TypeAliasTemplateDecl *D);
CXIndexDataConsumer.cpp 140 bool VisitTypeAliasTemplateDecl(const TypeAliasTemplateDecl *D) {
878 bool CXIndexDataConsumer::handleTypeAliasTemplate(const TypeAliasTemplateDecl *D) {
  /src/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/Rename/
USRLocFinder.cpp 197 if (const auto* TAT = dyn_cast<TypeAliasTemplateDecl>(Decl))
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaTemplate.cpp 299 isa<TypeAliasTemplateDecl>(TD) || isa<VarTemplateDecl>(TD) ||
3425 : isa<TypeAliasTemplateDecl>(Template) ? 3 : 4)
3514 static bool isEnableIfAliasTemplate(TypeAliasTemplateDecl *AliasTemplate) {
3693 if (TypeAliasTemplateDecl *AliasTemplate =
3694 dyn_cast<TypeAliasTemplateDecl>(Template)) {
4053 if (TypeAliasTemplateDecl *TAT =
4054 dyn_cast_or_null<TypeAliasTemplateDecl>(Template.getAsTemplateDecl())) {
5719 if (PackExpansionIntoNonPack && (isa<TypeAliasTemplateDecl>(Template) ||
7407 !isa<TypeAliasTemplateDecl>(Template) &&
SemaTemplateInstantiateDecl.cpp 937 TemplateDeclInstantiator::VisitTypeAliasTemplateDecl(TypeAliasTemplateDecl *D) {
949 TypeAliasTemplateDecl *PrevAliasTemplate = nullptr;
953 PrevAliasTemplate = dyn_cast<TypeAliasTemplateDecl>(Found.front());
962 TypeAliasTemplateDecl *Inst
963 = TypeAliasTemplateDecl::Create(SemaRef.Context, Owner, D->getLocation(),
SemaTemplateInstantiate.cpp 579 << cast<TypeAliasTemplateDecl>(D)
850 if (isa<TypeAliasTemplateDecl>(Active->Entity))
SemaDeclCXX.cpp 12630 TypeAliasTemplateDecl *OldDecl = nullptr;
12650 OldDecl = Previous.getAsSingle<TypeAliasTemplateDecl>();
12693 TypeAliasTemplateDecl *NewDecl =
12694 TypeAliasTemplateDecl::Create(Context, CurContext, UsingLoc,
SemaDecl.cpp 1273 if (isa<TypeAliasTemplateDecl>(TD))
15266 else if (isa<TypeAliasTemplateDecl>(PrevDecl))
TreeTransform.h 6704 if (TypeAliasTemplateDecl *TAT = dyn_cast_or_null<TypeAliasTemplateDecl>(
  /src/external/apache2/llvm/dist/clang/lib/ASTMatchers/
ASTMatchersInternal.cpp 732 const internal::VariadicDynCastAllOfMatcher<Decl, TypeAliasTemplateDecl>
733 typeAliasTemplateDecl;
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderDecl.cpp 390 void VisitTypeAliasTemplateDecl(TypeAliasTemplateDecl *D);
698 if (auto *Template = readDeclAs<TypeAliasTemplateDecl>())
2411 void ASTDeclReader::VisitTypeAliasTemplateDecl(TypeAliasTemplateDecl *D) {
3931 D = TypeAliasTemplateDecl::CreateDeserialized(Context, ID);
ASTWriterDecl.cpp 114 void VisitTypeAliasTemplateDecl(TypeAliasTemplateDecl *D);
1743 void ASTDeclWriter::VisitTypeAliasTemplateDecl(TypeAliasTemplateDecl *D) {
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
ASTUnit.cpp 300 isa<TypeAliasTemplateDecl>(ND)) {
  /src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/
ASTMatchers.h 221 /// typeAliasTemplateDecl() matches
226 extern const internal::VariadicDynCastAllOfMatcher<Decl, TypeAliasTemplateDecl>
227 typeAliasTemplateDecl;
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGDebugInfo.cpp 1243 cast<TypeAliasTemplateDecl>(Ty->getTemplateName().getAsTemplateDecl())

Completed in 100 milliseconds

1 2