clang
6.0.0
|
A template argument list. More...
#include "clang/AST/DeclTemplate.h"
Public Types | |
enum | OnStackType { OnStack } |
Type used to indicate that the template argument list itself is a stack object. More... | |
Public Member Functions | |
TemplateArgumentList (const TemplateArgumentList &)=delete | |
TemplateArgumentList & | operator= (const TemplateArgumentList &)=delete |
TemplateArgumentList (OnStackType, ArrayRef< TemplateArgument > Args) | |
Construct a new, temporary template argument list on the stack. More... | |
TemplateArgumentList (const TemplateArgumentList *Other) | |
Produces a shallow copy of the given template argument list. More... | |
const TemplateArgument & | get (unsigned Idx) const |
Retrieve the template argument at a given index. More... | |
const TemplateArgument & | operator[] (unsigned Idx) const |
Retrieve the template argument at a given index. More... | |
ArrayRef< TemplateArgument > | asArray () const |
Produce this as an array ref. More... | |
unsigned | size () const |
Retrieve the number of template arguments in this template argument list. More... | |
const TemplateArgument * | data () const |
Retrieve a pointer to the template argument list. More... | |
Static Public Member Functions | |
static TemplateArgumentList * | CreateCopy (ASTContext &Context, ArrayRef< TemplateArgument > Args) |
Create a new template argument list that copies the given set of template arguments. More... | |
Public Attributes | |
friend | TrailingObjects |
A template argument list.
Definition at line 210 of file DeclTemplate.h.
Type used to indicate that the template argument list itself is a stack object.
It does not own its template arguments.
Enumerator | |
---|---|
OnStack |
Definition at line 231 of file DeclTemplate.h.
|
delete |
|
inlineexplicit |
Construct a new, temporary template argument list on the stack.
The template argument list does not own the template arguments provided.
Definition at line 242 of file DeclTemplate.h.
|
inlineexplicit |
Produces a shallow copy of the given template argument list.
This operation assumes that the input argument list outlives it. This takes the list as a pointer to avoid looking like a copy constructor, since this really really isn't safe to use that way.
Definition at line 251 of file DeclTemplate.h.
|
inline |
Produce this as an array ref.
Definition at line 264 of file DeclTemplate.h.
References clang::TemplateParameterList::size().
Referenced by DeduceTemplateArguments(), clang::ClassTemplateSpecializationDecl::getNameForDiagnostic(), clang::FunctionDecl::getNameForDiagnostic(), clang::VarTemplateSpecializationDecl::getNameForDiagnostic(), getOutermostFuncOrBlockContext(), clang::getParameterABISpelling(), getUuidAttrOfType(), clang::Sema::InstantiateFunctionDeclaration(), clang::Sema::InstantiateVariableDefinition(), clang::Sema::MarkUsedTemplateParameters(), clang::FunctionTemplateSpecializationInfo::Profile(), clang::ClassTemplateSpecializationDecl::Profile(), and clang::VarTemplateSpecializationDecl::Profile().
|
static |
Create a new template argument list that copies the given set of template arguments.
Definition at line 650 of file DeclTemplate.cpp.
Referenced by clang::ASTDeclReader::UpdateDecl(), clang::ASTDeclReader::VisitClassTemplateSpecializationDeclImpl(), clang::ASTDeclReader::VisitFunctionDecl(), clang::TemplateDeclInstantiator::VisitFunctionDecl(), and clang::ASTDeclReader::VisitVarTemplateSpecializationDeclImpl().
|
inline |
Retrieve a pointer to the template argument list.
Definition at line 273 of file DeclTemplate.h.
References clang::allocateDefaultArgStorageChain(), and clang::C.
Referenced by clang::MultiLevelTemplateArgumentList::addOuterTemplateArguments(), clang::Sema::getTemplateArgumentBindingsText(), clang::Sema::isStdInitializerList(), clang::ASTNodeImporter::VisitClassTemplateSpecializationDecl(), and clang::ASTNodeImporter::VisitVarTemplateSpecializationDecl().
|
inline |
Retrieve the template argument at a given index.
Definition at line 255 of file DeclTemplate.h.
Referenced by clang::ASTRecordWriter::AddTemplateArgumentList().
|
delete |
|
inline |
Retrieve the template argument at a given index.
Definition at line 261 of file DeclTemplate.h.
|
inline |
Retrieve the number of template arguments in this template argument list.
Definition at line 270 of file DeclTemplate.h.
Referenced by clang::MultiLevelTemplateArgumentList::addOuterTemplateArguments(), clang::ASTRecordWriter::AddTemplateArgumentList(), clang::Sema::getTemplateArgumentBindingsText(), isCharSpecialization(), isStreamCharSpecialization(), clang::ASTNodeImporter::VisitClassTemplateSpecializationDecl(), and clang::ASTNodeImporter::VisitVarTemplateSpecializationDecl().
friend clang::TemplateArgumentList::TrailingObjects |
Definition at line 224 of file DeclTemplate.h.