clang
9.0.0
|
A struct with extended info about a syntactic name qualifier, to be used for the case of out-of-line declarations. More...
#include "clang/AST/Decl.h"
Public Member Functions | |
QualifierInfo ()=default | |
QualifierInfo (const QualifierInfo &)=delete | |
QualifierInfo & | operator= (const QualifierInfo &)=delete |
void | setTemplateParameterListsInfo (ASTContext &Context, ArrayRef< TemplateParameterList *> TPLists) |
Sets info about "outer" template parameter lists. More... | |
Public Attributes | |
NestedNameSpecifierLoc | QualifierLoc |
unsigned | NumTemplParamLists = 0 |
The number of "outer" template parameter lists. More... | |
TemplateParameterList ** | TemplParamLists = nullptr |
A new-allocated array of size NumTemplParamLists, containing pointers to the "outer" template parameter lists. More... | |
A struct with extended info about a syntactic name qualifier, to be used for the case of out-of-line declarations.
|
default |
|
delete |
|
delete |
void QualifierInfo::setTemplateParameterListsInfo | ( | ASTContext & | Context, |
ArrayRef< TemplateParameterList *> | TPLists | ||
) |
Sets info about "outer" template parameter lists.
Definition at line 1902 of file Decl.cpp.
References clang::ASTContext::Deallocate().
unsigned clang::QualifierInfo::NumTemplParamLists = 0 |
The number of "outer" template parameter lists.
The count includes all of the template parameter lists that were matched against the template-ids occurring into the NNS and possibly (in the case of an explicit specialization) a final "template <>".
Definition at line 668 of file Decl.h.
Referenced by clang::ASTRecordWriter::AddQualifierInfo(), and clang::ASTReader::ReadQualifierInfo().
NestedNameSpecifierLoc clang::QualifierInfo::QualifierLoc |
Definition at line 662 of file Decl.h.
Referenced by clang::ASTRecordWriter::AddQualifierInfo(), clang::ASTReader::ReadQualifierInfo(), and clang::TagDecl::setQualifierInfo().
TemplateParameterList** clang::QualifierInfo::TemplParamLists = nullptr |
A new-allocated array of size NumTemplParamLists, containing pointers to the "outer" template parameter lists.
It includes all of the template parameter lists that were matched against the template-ids occurring into the NNS and possibly (in the case of an explicit specialization) a final "template <>".
Definition at line 675 of file Decl.h.
Referenced by clang::ASTRecordWriter::AddQualifierInfo(), and clang::ASTReader::ReadQualifierInfo().