clang 20.0.0git
|
Represents a base class of a C++ class. More...
#include "clang/AST/DeclCXX.h"
Public Member Functions | |
CXXBaseSpecifier ()=default | |
CXXBaseSpecifier (SourceRange R, bool V, bool BC, AccessSpecifier A, TypeSourceInfo *TInfo, SourceLocation EllipsisLoc) | |
SourceRange | getSourceRange () const LLVM_READONLY |
Retrieves the source range that contains the entire base specifier. | |
SourceLocation | getBeginLoc () const LLVM_READONLY |
SourceLocation | getEndLoc () const LLVM_READONLY |
SourceLocation | getBaseTypeLoc () const LLVM_READONLY |
Get the location at which the base class type was written. | |
bool | isVirtual () const |
Determines whether the base class is a virtual base class (or not). | |
bool | isBaseOfClass () const |
Determine whether this base class is a base of a class declared with the 'class' keyword (vs. | |
bool | isPackExpansion () const |
Determine whether this base specifier is a pack expansion. | |
bool | getInheritConstructors () const |
Determine whether this base class's constructors get inherited. | |
void | setInheritConstructors (bool Inherit=true) |
Set that this base class's constructors should be inherited. | |
SourceLocation | getEllipsisLoc () const |
For a pack expansion, determine the location of the ellipsis. | |
AccessSpecifier | getAccessSpecifier () const |
Returns the access specifier for this base specifier. | |
AccessSpecifier | getAccessSpecifierAsWritten () const |
Retrieves the access specifier as written in the source code (which may mean that no access specifier was explicitly written). | |
QualType | getType () const |
Retrieves the type of the base class. | |
TypeSourceInfo * | getTypeSourceInfo () const |
Retrieves the type and source location of the base class. | |
Represents a base class of a C++ class.
Each CXXBaseSpecifier represents a single, direct base class (or struct) of a C++ class (or struct). It specifies the type of that base class, whether it is a virtual or non-virtual base, and what level of access (public, protected, private) is used for the derivation. For example:
In this code, C will have two CXXBaseSpecifiers, one for "public virtual A" and the other for "protected B".
|
default |
|
inline |
|
inline |
Returns the access specifier for this base specifier.
This is the actual base specifier as used for semantic analysis, so the result can never be AS_none. To retrieve the access specifier as written in the source code, use getAccessSpecifierAsWritten().
Definition at line 230 of file DeclCXX.h.
References clang::AS_none, clang::AS_private, and clang::AS_public.
Referenced by clang::Sema::AttachBaseSpecifiers(), and DiagnoseAccessPath().
|
inline |
Retrieves the access specifier as written in the source code (which may mean that no access specifier was explicitly written).
Use getAccessSpecifier() to retrieve the access specifier for use in semantic analysis.
Definition at line 242 of file DeclCXX.h.
Referenced by DiagnoseAccessPath(), clang::ODRDiagsEmitter::diagnoseMismatch(), and clang::ASTImporter::Import().
|
inline |
Get the location at which the base class type was written.
Definition at line 198 of file DeclCXX.h.
References clang::TypeLoc::getBeginLoc(), and clang::TypeSourceInfo::getTypeLoc().
|
inline |
Definition at line 194 of file DeclCXX.h.
References Range.
Referenced by clang::Sema::AttachBaseSpecifiers(), clang::Sema::BuildMemInitializer(), checkMoveAssignmentForRepeatedMove(), getNonCLikeKindForAnonymousStruct(), IsStructurallyEquivalent(), and clang::Sema::SpecialMemberIsTrivial().
|
inline |
For a pack expansion, determine the location of the ellipsis.
Definition at line 221 of file DeclCXX.h.
Referenced by clang::ASTImporter::Import().
|
inline |
Definition at line 195 of file DeclCXX.h.
References Range.
Referenced by getNonCLikeKindForAnonymousStruct().
|
inline |
|
inline |
Retrieves the source range that contains the entire base specifier.
Definition at line 193 of file DeclCXX.h.
References Range.
Referenced by clang::Sema::BuildMemInitializer(), checkMoveAssignmentForRepeatedMove(), DiagnoseAccessPath(), clang::ODRDiagsEmitter::diagnoseMismatch(), clang::ASTImporter::Import(), and IsStructurallyEquivalent().
|
inline |
Retrieves the type of the base class.
This type will always be an unqualified class type.
Definition at line 249 of file DeclCXX.h.
References clang::TypeSourceInfo::getType(), and clang::QualType::getUnqualifiedType().
Referenced by clang::Sema::AttachBaseSpecifiers(), BuildImplicitBaseInitializer(), clang::Sema::BuildMemInitializer(), clang::Sema::CheckConstructorAccess(), checkMoveAssignmentForRepeatedMove(), clang::InitializationSequence::Diagnose(), clang::ODRDiagsEmitter::diagnoseMismatch(), clang::ento::ProgramState::getLValue(), clang::interp::Context::getOverridingFunction(), HandleConstructorCall(), clang::interp::InterpretOffsetOf(), IsStructurallyEquivalent(), LeastDerivedClassWithSameLayout(), print_elem(), clang::APValue::printPretty(), and usesMultipleInheritanceModel().
|
inline |
Retrieves the type and source location of the base class.
Definition at line 254 of file DeclCXX.h.
Referenced by clang::ASTImporter::Import().
|
inline |
Determine whether this base class is a base of a class declared with the 'class' keyword (vs.
one declared with the 'struct' keyword).
Definition at line 207 of file DeclCXX.h.
Referenced by clang::ASTImporter::Import().
|
inline |
Determine whether this base specifier is a pack expansion.
Definition at line 210 of file DeclCXX.h.
References clang::SourceLocation::isValid().
|
inline |
Determines whether the base class is a virtual base class (or not).
Definition at line 203 of file DeclCXX.h.
Referenced by clang::Sema::BuildBaseInitializer(), BuildImplicitBaseInitializer(), checkMoveAssignmentForRepeatedMove(), clang::ODRDiagsEmitter::diagnoseMismatch(), FindBaseInitializer(), clang::ento::ProgramState::getLValue(), getOffsetOfFullPath(), HandleConstructorCall(), clang::ASTImporter::Import(), clang::interp::InterpretOffsetOf(), PerformConstructorInitialization(), and clang::Sema::SpecialMemberIsTrivial().