clang  3.9.0
Public Member Functions | Static Public Member Functions | Friends | List of all members
clang::ConstructorUsingShadowDecl Class Referencefinal

Represents a shadow constructor declaration introduced into a class by a C++11 using-declaration that names a constructor. More...

#include <DeclCXX.h>

Inheritance diagram for clang::ConstructorUsingShadowDecl:
[legend]
Collaboration diagram for clang::ConstructorUsingShadowDecl:
[legend]

Public Member Functions

ConstructorUsingShadowDeclgetNominatedBaseClassShadowDecl () const
 Get the inheriting constructor declaration for the direct base class from which this using shadow declaration was inherited, if there is one. More...
 
ConstructorUsingShadowDeclgetConstructedBaseClassShadowDecl () const
 Get the inheriting constructor declaration for the base class for which we don't have an explicit initializer, if there is one. More...
 
CXXRecordDeclgetNominatedBaseClass () const
 Get the base class that was named in the using declaration. More...
 
CXXRecordDeclgetConstructedBaseClass () const
 Get the base class whose constructor or constructor shadow declaration is passed the constructor arguments. More...
 
bool constructsVirtualBase () const
 Returns true if the constructed base class is a virtual base class subobject of this declaration's class. More...
 
CXXConstructorDeclgetConstructor () const
 Get the constructor or constructor template in the derived class correspnding to this using shadow declaration, if it has been implicitly declared already. More...
 
void setConstructor (NamedDecl *Ctor)
 
const CXXRecordDeclgetParent () const
 Returns the parent of this using shadow declaration, which is the class in which this is declared. More...
 
CXXRecordDeclgetParent ()
 
- Public Member Functions inherited from clang::UsingShadowDecl
UsingShadowDeclgetCanonicalDecl () override
 
const UsingShadowDeclgetCanonicalDecl () const
 
NamedDeclgetTargetDecl () const
 Gets the underlying declaration which has been brought into the local scope. More...
 
void setTargetDecl (NamedDecl *ND)
 Sets the underlying declaration which has been brought into the local scope. More...
 
UsingDeclgetUsingDecl () const
 Gets the using declaration to which this declaration is tied. More...
 
UsingShadowDeclgetNextUsingShadowDecl () const
 The next using shadow declaration contained in the shadow decl chain of the using declaration which introduced this decl. More...
 
- Public Member Functions inherited from clang::NamedDecl
IdentifierInfogetIdentifier () const
 getIdentifier - Get the identifier that names this declaration, if there is one. More...
 
StringRef getName () const
 getName - Get the name of identifier for this declaration as a StringRef. More...
 
std::string getNameAsString () const
 getNameAsString - Get a human-readable name for the declaration, even if it is one of the special kinds of names (C++ constructor, Objective-C selector, etc). More...
 
void printName (raw_ostream &os) const
 
DeclarationName getDeclName () const
 getDeclName - Get the actual, stored name of the declaration, which may be a special name. More...
 
void setDeclName (DeclarationName N)
 Set the name of this declaration. More...
 
void printQualifiedName (raw_ostream &OS) const
 printQualifiedName - Returns human-readable qualified name for declaration, like A::B::i, for i being member of namespace A::B. More...
 
void printQualifiedName (raw_ostream &OS, const PrintingPolicy &Policy) const
 
std::string getQualifiedNameAsString () const
 
virtual void getNameForDiagnostic (raw_ostream &OS, const PrintingPolicy &Policy, bool Qualified) const
 getNameForDiagnostic - Appends a human-readable name for this declaration into the given stream. More...
 
bool declarationReplaces (NamedDecl *OldD, bool IsKnownNewer=true) const
 Determine whether this declaration, if known to be well-formed within its context, will replace the declaration OldD if introduced into scope. More...
 
bool hasLinkage () const
 Determine whether this declaration has linkage. More...
 
bool isHidden () const
 Determine whether this declaration is hidden from name lookup. More...
 
void setHidden (bool Hide)
 Set whether this declaration is hidden from name lookup. More...
 
bool isCXXClassMember () const
 Determine whether this declaration is a C++ class member. More...
 
bool isCXXInstanceMember () const
 Determine whether the given declaration is an instance member of a C++ class. More...
 
Linkage getLinkageInternal () const
 Determine what kind of linkage this entity has. More...
 
Linkage getFormalLinkage () const
 Get the linkage from a semantic point of view. More...
 
bool hasExternalFormalLinkage () const
 True if this decl has external linkage. More...
 
bool isExternallyVisible () const
 
Visibility getVisibility () const
 Determines the visibility of this entity. More...
 
LinkageInfo getLinkageAndVisibility () const
 Determines the linkage and visibility of this entity. More...
 
Optional< VisibilitygetExplicitVisibility (ExplicitVisibilityKind kind) const
 If visibility was explicitly specified for this declaration, return that visibility. More...
 
bool isLinkageValid () const
 True if the computed linkage is valid. More...
 
bool hasLinkageBeenComputed () const
 True if something has required us to compute the linkage of this declaration. More...
 
NamedDeclgetUnderlyingDecl ()
 Looks through UsingDecls and ObjCCompatibleAliasDecls for the underlying named decl. More...
 
const NamedDeclgetUnderlyingDecl () const
 
NamedDeclgetMostRecentDecl ()
 
const NamedDeclgetMostRecentDecl () const
 
ObjCStringFormatFamily getObjCFStringFormattingFamily () const
 
- Public Member Functions inherited from clang::Redeclarable< UsingShadowDecl >
 Redeclarable (const ASTContext &Ctx)
 
UsingShadowDeclgetPreviousDecl ()
 Return the previous declaration of this declaration or NULL if this is the first declaration. More...
 
const UsingShadowDeclgetPreviousDecl () const
 
UsingShadowDeclgetFirstDecl ()
 Return the first declaration of this declaration or itself if this is the only declaration. More...
 
const UsingShadowDeclgetFirstDecl () const
 Return the first declaration of this declaration or itself if this is the only declaration. More...
 
bool isFirstDecl () const
 True if this is the first declaration in its redeclaration chain. More...
 
UsingShadowDeclgetMostRecentDecl ()
 Returns the most recent (re)declaration of this declaration. More...
 
const UsingShadowDeclgetMostRecentDecl () const
 Returns the most recent (re)declaration of this declaration. More...
 
void setPreviousDecl (UsingShadowDecl *PrevDecl)
 Set the previous declaration. More...
 
redecl_range redecls () const
 Returns an iterator range for all the redeclarations of the same decl. More...
 
redecl_iterator redecls_begin () const
 
redecl_iterator redecls_end () const
 

Static Public Member Functions

static ConstructorUsingShadowDeclCreate (ASTContext &C, DeclContext *DC, SourceLocation Loc, UsingDecl *Using, NamedDecl *Target, bool IsVirtual)
 
static ConstructorUsingShadowDeclCreateDeserialized (ASTContext &C, unsigned ID)
 
static bool classof (const Decl *D)
 
static bool classofKind (Kind K)
 
- Static Public Member Functions inherited from clang::UsingShadowDecl
static UsingShadowDeclCreate (ASTContext &C, DeclContext *DC, SourceLocation Loc, UsingDecl *Using, NamedDecl *Target)
 
static UsingShadowDeclCreateDeserialized (ASTContext &C, unsigned ID)
 
static bool classof (const Decl *D)
 
static bool classofKind (Kind K)
 
- Static Public Member Functions inherited from clang::NamedDecl
static bool classof (const Decl *D)
 
static bool classofKind (Kind K)
 

Friends

class ASTDeclReader
 
class ASTDeclWriter
 

Additional Inherited Members

- Public Types inherited from clang::UsingShadowDecl
typedef
redeclarable_base::redecl_range 
redecl_range
 
typedef
redeclarable_base::redecl_iterator 
redecl_iterator
 
- Public Types inherited from clang::NamedDecl
enum  ExplicitVisibilityKind { VisibilityForType, VisibilityForValue }
 Kinds of explicit visibility. More...
 
- Public Types inherited from clang::Redeclarable< UsingShadowDecl >
typedef llvm::iterator_range
< redecl_iterator > 
redecl_range
 
- Protected Member Functions inherited from clang::UsingShadowDecl
 UsingShadowDecl (Kind K, ASTContext &C, DeclContext *DC, SourceLocation Loc, UsingDecl *Using, NamedDecl *Target)
 
 UsingShadowDecl (Kind K, ASTContext &C, EmptyShell)
 
- Protected Member Functions inherited from clang::NamedDecl
 NamedDecl (Kind DK, DeclContext *DC, SourceLocation L, DeclarationName N)
 
- Protected Member Functions inherited from clang::Redeclarable< UsingShadowDecl >
UsingShadowDeclgetNextRedeclaration () const
 
- Static Protected Member Functions inherited from clang::Redeclarable< UsingShadowDecl >
static DeclLink PreviousDeclLink (UsingShadowDecl *D)
 
static DeclLink LatestDeclLink (const ASTContext &Ctx)
 
- Protected Attributes inherited from clang::Redeclarable< UsingShadowDecl >
DeclLink RedeclLink
 Points to the next redeclaration in the chain. More...
 
UsingShadowDeclFirst
 

Detailed Description

Represents a shadow constructor declaration introduced into a class by a C++11 using-declaration that names a constructor.

For example:

struct Base { Base(int); };
struct Derived {
using Base::Base; // creates a UsingDecl and a ConstructorUsingShadowDecl
};

Definition at line 2927 of file DeclCXX.h.

Member Function Documentation

static bool clang::ConstructorUsingShadowDecl::classof ( const Decl D)
inlinestatic

Definition at line 3026 of file DeclCXX.h.

References classofKind().

static bool clang::ConstructorUsingShadowDecl::classofKind ( Kind  K)
inlinestatic

Definition at line 3027 of file DeclCXX.h.

Referenced by classof().

bool clang::ConstructorUsingShadowDecl::constructsVirtualBase ( ) const
inline

Returns true if the constructed base class is a virtual base class subobject of this declaration's class.

Definition at line 3016 of file DeclCXX.h.

Referenced by clang::CodeGen::CodeGenTypes::inheritingCtorHasParams().

ConstructorUsingShadowDecl * ConstructorUsingShadowDecl::Create ( ASTContext C,
DeclContext DC,
SourceLocation  Loc,
UsingDecl Using,
NamedDecl Target,
bool  IsVirtual 
)
static

Definition at line 2188 of file DeclCXX.cpp.

References AttributeLangSupport::C.

Referenced by clang::Sema::BuildUsingShadowDecl().

ConstructorUsingShadowDecl * ConstructorUsingShadowDecl::CreateDeserialized ( ASTContext C,
unsigned  ID 
)
static

Definition at line 2196 of file DeclCXX.cpp.

References AttributeLangSupport::C, and ID.

CXXRecordDecl* clang::ConstructorUsingShadowDecl::getConstructedBaseClass ( ) const
inline

Get the base class whose constructor or constructor shadow declaration is passed the constructor arguments.

Definition at line 3007 of file DeclCXX.h.

References clang::UsingShadowDecl::getTargetDecl().

ConstructorUsingShadowDecl* clang::ConstructorUsingShadowDecl::getConstructedBaseClassShadowDecl ( ) const
inline

Get the inheriting constructor declaration for the base class for which we don't have an explicit initializer, if there is one.

Definition at line 2997 of file DeclCXX.h.

CXXConstructorDecl* clang::ConstructorUsingShadowDecl::getConstructor ( ) const

Get the constructor or constructor template in the derived class correspnding to this using shadow declaration, if it has been implicitly declared already.

CXXRecordDecl * ConstructorUsingShadowDecl::getNominatedBaseClass ( ) const

Get the base class that was named in the using declaration.

This can be different for each redeclaration of this same shadow decl.

Definition at line 2200 of file DeclCXX.cpp.

References clang::NestedNameSpecifier::getAsRecordDecl(), clang::UsingDecl::getQualifier(), and clang::UsingShadowDecl::getUsingDecl().

ConstructorUsingShadowDecl* clang::ConstructorUsingShadowDecl::getNominatedBaseClassShadowDecl ( ) const
inline

Get the inheriting constructor declaration for the direct base class from which this using shadow declaration was inherited, if there is one.

This can be different for each redeclaration of the same shadow decl.

Definition at line 2991 of file DeclCXX.h.

const CXXRecordDecl* clang::ConstructorUsingShadowDecl::getParent ( ) const
inline

Returns the parent of this using shadow declaration, which is the class in which this is declared.

Definition at line 2980 of file DeclCXX.h.

Referenced by clang::Sema::DefineInheritingConstructor(), and clang::Sema::findInheritingConstructor().

CXXRecordDecl* clang::ConstructorUsingShadowDecl::getParent ( )
inline

Definition at line 2983 of file DeclCXX.h.

void clang::ConstructorUsingShadowDecl::setConstructor ( NamedDecl Ctor)

Friends And Related Function Documentation

friend class ASTDeclReader
friend

Definition at line 3029 of file DeclCXX.h.

friend class ASTDeclWriter
friend

Definition at line 3030 of file DeclCXX.h.


The documentation for this class was generated from the following files: