class VarTemplateSpecializationDecl

Declaration

class VarTemplateSpecializationDecl : public VarDecl, public Node { /* full declaration omitted */ };

Description

Represents a variable template specialization, which refers to a variable template with a given set of template arguments. Variable template specializations represent both explicit specializations of variable templates, as in the example below, and implicit instantiations of variable templates.

Declared at: clang/include/clang/AST/DeclTemplate.h:2690

Inherits from: VarDecl, FoldingSetBase::Node

Member Variables

private llvm::PointerUnion< VarTemplateDecl*, SpecializedPartialSpecialization*> SpecializedTemplate
The template that this specialization specializes.
private clang::VarTemplateSpecializationDecl:: ExplicitSpecializationInfo* ExplicitInfo = nullptr
Further info for explicit template specialization/instantiation. Does not apply to implicit specializations.
private const clang::TemplateArgumentList* TemplateArgs
The template arguments used to describe this specialization.
private const clang::ASTTemplateArgumentListInfo* TemplateArgsInfo = nullptr
private clang::SourceLocation PointOfInstantiation
The point where this template was instantiated (if any).
private unsigned int SpecializationKind
The kind of specialization this declaration refers to. Really a value of type TemplateSpecializationKind.
private unsigned int IsCompleteDefinition
Whether this declaration is a complete definition of the variable template specialization. We can't otherwise tell apart an instantiated declaration from an instantiated definition with no initializer.

Inherited from VarDecl:

protected Init
protected

Inherited from Decl:

protected NextInContextAndBits
protected Access
protected FromASTFile
protected IdentifierNamespace
protected CacheValidAndLinkage

Method Overview

Inherited from FoldingSetBase::Node:

Inherited from VarDecl:

Inherited from DeclaratorDecl:

Inherited from ValueDecl:

Inherited from NamedDecl:

Inherited from Decl:

Methods

static clang::VarTemplateSpecializationDecl*
Create(
    clang::ASTContext& Context,
    clang::DeclContext* DC,
    clang::SourceLocation StartLoc,
    clang::SourceLocation IdLoc,
    clang::VarTemplateDecl* SpecializedTemplate,
    clang::QualType T,
    clang::TypeSourceInfo* TInfo,
    clang::StorageClass S,
    ArrayRef<clang::TemplateArgument> Args)

Declared at: clang/include/clang/AST/DeclTemplate.h:2761

Parameters

clang::ASTContext& Context
clang::DeclContext* DC
clang::SourceLocation StartLoc
clang::SourceLocation IdLoc
clang::VarTemplateDecl* SpecializedTemplate
clang::QualType T
clang::TypeSourceInfo* TInfo
clang::StorageClass S
ArrayRef<clang::TemplateArgument> Args

static clang::VarTemplateSpecializationDecl*
CreateDeserialized(clang::ASTContext& C,
                   unsigned int ID)

Declared at: clang/include/clang/AST/DeclTemplate.h:2765

Parameters

clang::ASTContext& C
unsigned int ID

static void Profile(
    llvm::FoldingSetNodeID& ID,
    ArrayRef<clang::TemplateArgument>
        TemplateArgs,
    clang::ASTContext& Context)

Declared at: clang/include/clang/AST/DeclTemplate.h:2936

Parameters

llvm::FoldingSetNodeID& ID
ArrayRef<clang::TemplateArgument> TemplateArgs
clang::ASTContext& Context

void Profile(llvm::FoldingSetNodeID& ID) const

Declared at: clang/include/clang/AST/DeclTemplate.h:2932

Parameters

llvm::FoldingSetNodeID& ID

VarTemplateSpecializationDecl(
    clang::Decl::Kind DK,
    clang::ASTContext& Context)

Declared at: clang/include/clang/AST/DeclTemplate.h:2753

Parameters

clang::Decl::Kind DK
clang::ASTContext& Context

VarTemplateSpecializationDecl(
    clang::Decl::Kind DK,
    clang::ASTContext& Context,
    clang::DeclContext* DC,
    clang::SourceLocation StartLoc,
    clang::SourceLocation IdLoc,
    clang::VarTemplateDecl* SpecializedTemplate,
    clang::QualType T,
    clang::TypeSourceInfo* TInfo,
    clang::StorageClass S,
    ArrayRef<clang::TemplateArgument> Args)

Declared at: clang/include/clang/AST/DeclTemplate.h:2746

Parameters

clang::Decl::Kind DK
clang::ASTContext& Context
clang::DeclContext* DC
clang::SourceLocation StartLoc
clang::SourceLocation IdLoc
clang::VarTemplateDecl* SpecializedTemplate
clang::QualType T
clang::TypeSourceInfo* TInfo
clang::StorageClass S
ArrayRef<clang::TemplateArgument> Args

static bool classof(const clang::Decl* D)

Declared at: clang/include/clang/AST/DeclTemplate.h:2944

Parameters

const clang::Decl* D

static bool classofKind(clang::Decl::Kind K)

Declared at: clang/include/clang/AST/DeclTemplate.h:2946

Parameters

clang::Decl::Kind K

clang::SourceLocation getExternLoc() const

Description

Gets the location of the extern keyword, if present.

Declared at: clang/include/clang/AST/DeclTemplate.h:2909

llvm::PointerUnion<
    VarTemplateDecl*,
    VarTemplatePartialSpecializationDecl*>
getInstantiatedFrom() const

Description

If this variable template specialization is an instantiation of a template (rather than an explicit specialization), return the variable template or variable template partial specialization from which it was instantiated.

Declared at: clang/include/clang/AST/DeclTemplate.h:2835

clang::VarTemplateSpecializationDecl*
getMostRecentDecl()

Declared at: clang/include/clang/AST/DeclTemplate.h:2771

void getNameForDiagnostic(
    llvm::raw_ostream& OS,
    const clang::PrintingPolicy& Policy,
    bool Qualified) const

Description

Appends a human-readable name for this declaration into the given stream. This is the method invoked by Sema when displaying a NamedDecl in a diagnostic. It does not necessarily produce the same result as printName(); for example, class template specializations are printed with their template arguments.

Declared at: clang/include/clang/AST/DeclTemplate.h:2768

Parameters

llvm::raw_ostream& OS
const clang::PrintingPolicy& Policy
bool Qualified

clang::SourceLocation getPointOfInstantiation()
    const

Description

Get the point of instantiation (if any), or null if none.

Declared at: clang/include/clang/AST/DeclTemplate.h:2819

clang::TemplateSpecializationKind
getSpecializationKind() const

Description

Determine the kind of specialization that this declaration represents.

Declared at: clang/include/clang/AST/DeclTemplate.h:2793

clang::VarTemplateDecl* getSpecializedTemplate()
    const

Description

Retrieve the template that this specialization specializes.

Declared at: clang/include/clang/AST/DeclTemplate.h:2777

llvm::PointerUnion<
    VarTemplateDecl*,
    VarTemplatePartialSpecializationDecl*>
getSpecializedTemplateOrPartial() const

Description

Retrieve the variable template or variable template partial specialization which was specialized by this.

Declared at: clang/include/clang/AST/DeclTemplate.h:2846

const clang::TemplateArgumentList&
getTemplateArgs() const

Description

Retrieve the template arguments of the variable template specialization.

Declared at: clang/include/clang/AST/DeclTemplate.h:2781

const clang::ASTTemplateArgumentListInfo*
getTemplateArgsInfo() const

Declared at: clang/include/clang/AST/DeclTemplate.h:2787

const clang::TemplateArgumentList&
getTemplateInstantiationArgs() const

Description

Retrieve the set of template arguments that should be used to instantiate the initializer of the variable template or variable template partial specialization from which this variable template specialization was instantiated.

Declared at: clang/include/clang/AST/DeclTemplate.h:2865

Returns

For a variable template specialization instantiated from the primary template, this function will return the same template arguments as getTemplateArgs(). For a variable template specialization instantiated from a variable template partial specialization, this function will the return deduced template arguments for the variable template partial specialization itself.

clang::SourceLocation getTemplateKeywordLoc()
    const

Description

Gets the location of the template keyword, if present.

Declared at: clang/include/clang/AST/DeclTemplate.h:2928

clang::TypeSourceInfo* getTypeAsWritten() const

Description

Gets the type of this specialization as it was written by the user, if it was so written.

Declared at: clang/include/clang/AST/DeclTemplate.h:2904

bool isClassScopeExplicitSpecialization() const

Declared at: clang/include/clang/AST/DeclTemplate.h:2801

bool isExplicitInstantiationOrSpecialization()
    const

Description

True if this declaration is an explicit specialization, explicit instantiation declaration, or explicit instantiation definition.

Declared at: clang/include/clang/AST/DeclTemplate.h:2809

bool isExplicitSpecialization() const

Declared at: clang/include/clang/AST/DeclTemplate.h:2797

void setCompleteDefinition()

Declared at: clang/include/clang/AST/DeclTemplate.h:2828

void setExternLoc(clang::SourceLocation Loc)

Description

Sets the location of the extern keyword.

Declared at: clang/include/clang/AST/DeclTemplate.h:2914

Parameters

clang::SourceLocation Loc

void setInstantiationOf(
    clang::VarTemplatePartialSpecializationDecl*
        PartialSpec,
    const clang::TemplateArgumentList*
        TemplateArgs)

Description

Note that this variable template specialization is actually an instantiation of the given variable template partial specialization whose template arguments have been deduced.

Declared at: clang/include/clang/AST/DeclTemplate.h:2876

Parameters

clang::VarTemplatePartialSpecializationDecl* PartialSpec
const clang::TemplateArgumentList* TemplateArgs

void setInstantiationOf(
    clang::VarTemplateDecl* TemplDecl)

Description

Note that this variable template specialization is an instantiation of the given variable template.

Declared at: clang/include/clang/AST/DeclTemplate.h:2888

Parameters

clang::VarTemplateDecl* TemplDecl

void setPointOfInstantiation(
    clang::SourceLocation Loc)

Declared at: clang/include/clang/AST/DeclTemplate.h:2823

Parameters

clang::SourceLocation Loc

void setSpecializationKind(
    clang::TemplateSpecializationKind TSK)

Declared at: clang/include/clang/AST/DeclTemplate.h:2814

Parameters

clang::TemplateSpecializationKind TSK

void setTemplateArgsInfo(
    const clang::TemplateArgumentListInfo&
        ArgsInfo)

Declared at: clang/include/clang/AST/DeclTemplate.h:2784

Parameters

const clang::TemplateArgumentListInfo& ArgsInfo

void setTemplateArgsInfo(
    const clang::ASTTemplateArgumentListInfo*
        ArgsInfo)

Declared at: clang/include/clang/AST/DeclTemplate.h:2785

Parameters

const clang::ASTTemplateArgumentListInfo* ArgsInfo

void setTemplateKeywordLoc(
    clang::SourceLocation Loc)

Description

Sets the location of the template keyword.

Declared at: clang/include/clang/AST/DeclTemplate.h:2921

Parameters

clang::SourceLocation Loc

void setTypeAsWritten(clang::TypeSourceInfo* T)

Description

Sets the type of this specialization as it was written by the user.

Declared at: clang/include/clang/AST/DeclTemplate.h:2896

Parameters

clang::TypeSourceInfo* T