clang
8.0.0
|
DeclContext - This is used only as base class of specific decl types that can act as declaration contexts. More...
#include "clang/AST/DeclBase.h"
Classes | |
class | all_lookups_iterator |
all_lookups_iterator - An iterator that provides a view over the results of looking up every possible name. More... | |
class | ddiag_iterator |
An iterator over the dependent diagnostics in a dependent context. More... | |
class | decl_iterator |
decl_iterator - Iterates through the declarations stored within this context. More... | |
class | filtered_decl_iterator |
Iterates over a filtered subrange of declarations stored in a DeclContext. More... | |
class | specific_decl_iterator |
specific_decl_iterator - Iterates over a subrange of declarations stored in a DeclContext, providing only those that are of type SpecificDecl (or a class derived from it). More... | |
struct | udir_iterator |
Public Types | |
using | decl_range = llvm::iterator_range< decl_iterator > |
using | lookup_result = DeclContextLookupResult |
using | lookup_iterator = lookup_result::iterator |
using | lookups_range = llvm::iterator_range< all_lookups_iterator > |
using | udir_iterator_base = llvm::iterator_adaptor_base< udir_iterator, lookup_iterator, std::random_access_iterator_tag, UsingDirectiveDecl * > |
using | udir_range = llvm::iterator_range< udir_iterator > |
using | ddiag_range = llvm::iterator_range< DeclContext::ddiag_iterator > |
Public Member Functions | |
~DeclContext () | |
Decl::Kind | getDeclKind () const |
const char * | getDeclKindName () const |
DeclContext * | getParent () |
getParent - Returns the containing DeclContext. More... | |
const DeclContext * | getParent () const |
DeclContext * | getLexicalParent () |
getLexicalParent - Returns the containing lexical DeclContext. More... | |
const DeclContext * | getLexicalParent () const |
DeclContext * | getLookupParent () |
Find the parent context of this context that will be used for unqualified name lookup. More... | |
const DeclContext * | getLookupParent () const |
ASTContext & | getParentASTContext () const |
bool | isClosure () const |
bool | isObjCContainer () const |
bool | isFunctionOrMethod () const |
bool | isLookupContext () const |
Test whether the context supports looking up names. More... | |
bool | isFileContext () const |
bool | isTranslationUnit () const |
bool | isRecord () const |
bool | isNamespace () const |
bool | isStdNamespace () const |
bool | isInlineNamespace () const |
bool | isDependentContext () const |
Determines whether this context is dependent on a template parameter. More... | |
bool | isTransparentContext () const |
isTransparentContext - Determines whether this context is a "transparent" context, meaning that the members declared in this context are semantically declared in the nearest enclosing non-transparent (opaque) context but are lexically declared in this context. More... | |
bool | isExternCContext () const |
Determines whether this context or some of its ancestors is a linkage specification context that specifies C linkage. More... | |
const LinkageSpecDecl * | getExternCContext () const |
Retrieve the nearest enclosing C linkage specification context. More... | |
bool | isExternCXXContext () const |
Determines whether this context or some of its ancestors is a linkage specification context that specifies C++ linkage. More... | |
bool | Equals (const DeclContext *DC) const |
Determine whether this declaration context is equivalent to the declaration context DC. More... | |
bool | Encloses (const DeclContext *DC) const |
Determine whether this declaration context encloses the declaration context DC. More... | |
Decl * | getNonClosureAncestor () |
Find the nearest non-closure ancestor of this context, i.e. More... | |
const Decl * | getNonClosureAncestor () const |
DeclContext * | getPrimaryContext () |
getPrimaryContext - There may be many different declarations of the same entity (including forward declarations of classes, multiple definitions of namespaces, etc.), each with a different set of declarations. More... | |
const DeclContext * | getPrimaryContext () const |
DeclContext * | getRedeclContext () |
getRedeclContext - Retrieve the context in which an entity conflicts with other entities of the same name, or where it is a redeclaration if the two entities are compatible. More... | |
const DeclContext * | getRedeclContext () const |
DeclContext * | getEnclosingNamespaceContext () |
Retrieve the nearest enclosing namespace context. More... | |
const DeclContext * | getEnclosingNamespaceContext () const |
RecordDecl * | getOuterLexicalRecordContext () |
Retrieve the outermost lexically enclosing record context. More... | |
const RecordDecl * | getOuterLexicalRecordContext () const |
bool | InEnclosingNamespaceSetOf (const DeclContext *NS) const |
Test if this context is part of the enclosing namespace set of the context NS, as defined in C++0x [namespace.def]p9. More... | |
void | collectAllContexts (SmallVectorImpl< DeclContext *> &Contexts) |
Collects all of the declaration contexts that are semantically connected to this declaration context. More... | |
decl_range | decls () const |
decls_begin/decls_end - Iterate over the declarations stored in this context. More... | |
decl_iterator | decls_begin () const |
decl_iterator | decls_end () const |
bool | decls_empty () const |
decl_range | noload_decls () const |
noload_decls_begin/end - Iterate over the declarations stored in this context that are currently loaded; don't attempt to retrieve anything from an external source. More... | |
decl_iterator | noload_decls_begin () const |
decl_iterator | noload_decls_end () const |
void | addDecl (Decl *D) |
Add the declaration D into this context. More... | |
void | addDeclInternal (Decl *D) |
Add the declaration D into this context, but suppress searches for external declarations with the same name. More... | |
void | addHiddenDecl (Decl *D) |
Add the declaration D to this context without modifying any lookup tables. More... | |
void | removeDecl (Decl *D) |
Removes a declaration from this context. More... | |
bool | containsDecl (Decl *D) const |
Checks whether a declaration is in this context. More... | |
bool | containsDeclAndLoad (Decl *D) const |
Checks whether a declaration is in this context. More... | |
lookup_result | lookup (DeclarationName Name) const |
lookup - Find the declarations (if any) with the given Name in this context. More... | |
lookup_result | noload_lookup (DeclarationName Name) |
Find the declarations with the given name that are visible within this context; don't attempt to retrieve anything from an external source. More... | |
void | localUncachedLookup (DeclarationName Name, SmallVectorImpl< NamedDecl *> &Results) |
A simplistic name lookup mechanism that performs name lookup into this declaration context without consulting the external source. More... | |
void | makeDeclVisibleInContext (NamedDecl *D) |
Makes a declaration visible within this context. More... | |
lookups_range | lookups () const |
lookups_range | noload_lookups (bool PreserveInternalState) const |
all_lookups_iterator | lookups_begin () const |
Iterators over all possible lookups within this context. More... | |
all_lookups_iterator | lookups_end () const |
all_lookups_iterator | noload_lookups_begin () const |
Iterators over all possible lookups within this context that are currently loaded; don't attempt to retrieve anything from an external source. More... | |
all_lookups_iterator | noload_lookups_end () const |
udir_range | using_directives () const |
Returns iterator range [First, Last) of UsingDirectiveDecls stored within this context. More... | |
ddiag_range | ddiags () const |
void | setMustBuildLookupTable () |
Mark that there are external lexical declarations that we need to include in our lookup table (and that are not available as external visible lookups). More... | |
StoredDeclsMap * | getLookupPtr () const |
Retrieve the internal representation of the lookup structure. More... | |
StoredDeclsMap * | buildLookup () |
Ensure the lookup structure is fully-built and return it. More... | |
bool | hasExternalLexicalStorage () const |
Whether this DeclContext has external storage containing additional declarations that are lexically in this context. More... | |
void | setHasExternalLexicalStorage (bool ES=true) const |
State whether this DeclContext has external storage for declarations lexically in this context. More... | |
bool | hasExternalVisibleStorage () const |
Whether this DeclContext has external storage containing additional declarations that are visible in this context. More... | |
void | setHasExternalVisibleStorage (bool ES=true) const |
State whether this DeclContext has external storage for declarations visible in this context. More... | |
bool | isDeclInLexicalTraversal (const Decl *D) const |
Determine whether the given declaration is stored in the list of declarations lexically within this context. More... | |
bool | setUseQualifiedLookup (bool use=true) const |
bool | shouldUseQualifiedLookup () const |
void | dumpDeclContext () const |
void | dumpLookups () const |
void | dumpLookups (llvm::raw_ostream &OS, bool DumpDecls=false, bool Deserialize=false) const |
Static Public Member Functions | |
static bool | classof (const Decl *D) |
static bool | classof (const DeclContext *D) |
Protected Member Functions | |
DeclContext (Decl::Kind K) | |
Static Protected Member Functions | |
static std::pair< Decl *, Decl * > | BuildDeclChain (ArrayRef< Decl *> Decls, bool FieldsAlreadyLoaded) |
Build up a chain of declarations. More... | |
Protected Attributes | |
union { | |
DeclContextBitfields DeclContextBits | |
TagDeclBitfields TagDeclBits | |
EnumDeclBitfields EnumDeclBits | |
RecordDeclBitfields RecordDeclBits | |
OMPDeclareReductionDeclBitfields OMPDeclareReductionDeclBits | |
FunctionDeclBitfields FunctionDeclBits | |
CXXConstructorDeclBitfields CXXConstructorDeclBits | |
ObjCMethodDeclBitfields ObjCMethodDeclBits | |
ObjCContainerDeclBitfields ObjCContainerDeclBits | |
LinkageSpecDeclBitfields LinkageSpecDeclBits | |
BlockDeclBitfields BlockDeclBits | |
}; | |
This anonymous union stores the bits belonging to DeclContext and classes deriving from it. More... | |
Decl * | FirstDecl = nullptr |
FirstDecl - The first declaration stored within this declaration context. More... | |
Decl * | LastDecl = nullptr |
LastDecl - The last declaration stored within this declaration context. More... | |
Friends | |
class | ASTDeclReader |
For makeDeclVisibleInContextImpl. More... | |
class | ExternalASTSource |
For reconcileExternalVisibleStorage, CreateStoredDeclsMap, hasNeedToReconcileExternalVisibleStorage. More... | |
class | DependentDiagnostic |
For CreateStoredDeclsMap. More... | |
class | ASTWriter |
For hasNeedToReconcileExternalVisibleStorage, hasLazyLocalLexicalLookups, hasLazyExternalLexicalLookups. More... | |
DeclContext - This is used only as base class of specific decl types that can act as declaration contexts.
These decls are (only the top classes that directly derive from DeclContext are mentioned, not their subclasses):
TranslationUnitDecl ExternCContext NamespaceDecl TagDecl OMPDeclareReductionDecl FunctionDecl ObjCMethodDecl ObjCContainerDecl LinkageSpecDecl ExportDecl BlockDecl CapturedDecl
Definition at line 1262 of file DeclBase.h.
using clang::DeclContext::ddiag_range = llvm::iterator_range<DeclContext::ddiag_iterator> |
Definition at line 2285 of file DeclBase.h.
using clang::DeclContext::decl_range = llvm::iterator_range<decl_iterator> |
Definition at line 1993 of file DeclBase.h.
Definition at line 2202 of file DeclBase.h.
Definition at line 2201 of file DeclBase.h.
using clang::DeclContext::lookups_range = llvm::iterator_range<all_lookups_iterator> |
Definition at line 2248 of file DeclBase.h.
using clang::DeclContext::udir_iterator_base = llvm::iterator_adaptor_base<udir_iterator, lookup_iterator, std::random_access_iterator_tag, UsingDirectiveDecl *> |
Definition at line 2270 of file DeclBase.h.
using clang::DeclContext::udir_range = llvm::iterator_range<udir_iterator> |
Definition at line 2278 of file DeclBase.h.
|
protected |
Definition at line 1011 of file DeclBase.cpp.
Referenced by clang::ObjCInterfaceDecl::lookupPrivateMethod().
|
default |
Referenced by classof().
void DeclContext::addDecl | ( | Decl * | D | ) |
Add the declaration D into this context.
This routine should be invoked when the declaration D has first been declared, to place D into the context where it was (lexically) defined. Every declaration must be added to one (and only one!) context, where it can be visited via [decls_begin(), decls_end()). Once a declaration has been added to its lexical context, the corresponding DeclContext owns the declaration.
If D is also a NamedDecl, it will be made visible within its semantic context via makeDeclVisibleInContext.
Definition at line 1507 of file DeclBase.cpp.
Referenced by clang::Sema::ActOnPragmaMSComment(), clang::Sema::ActOnStartCategoryImplementation(), clang::Sema::ActOnStartCategoryInterface(), addFieldToRecordDecl(), clang::ObjCImplDecl::addPropertyImplementation(), clang::Sema::BuildLambdaExpr(), captureThis(), clang::Sema::CheckImplementationIvars(), clang::CodeGen::CGOpenMPRuntimeNVPTX::clear(), clang::Sema::createImplicitModuleImportForErrorRecovery(), clang::ASTContext::getBlockDescriptorExtendedType(), clang::ASTContext::getBlockDescriptorType(), clang::CodeGen::CodeGenModule::getObjCFastEnumerationStateType(), getPreviousDeclForInstantiation(), clang::TemplateDeclInstantiator::InstantiateEnumDefinition(), clang::TemplateDeclInstantiator::InstantiateTypedefNameDecl(), clang::Sema::ProcessPropertyDecl(), clang::Sema::PushUsingDirective(), clang::TemplateDeclInstantiator::VisitCXXMethodDecl(), and clang::TemplateDeclInstantiator::VisitVarDecl().
void DeclContext::addDeclInternal | ( | Decl * | D | ) |
Add the declaration D into this context, but suppress searches for external declarations with the same name.
Although analogous in function to addDecl, this removes an important check. This is only useful if the Decl is being added in response to an external search; in all other cases, addDecl() is the right function to use. See the ASTImporter for use cases.
Definition at line 1515 of file DeclBase.cpp.
Referenced by clang::ASTNodeImporter::VisitAccessSpecDecl(), clang::ASTNodeImporter::VisitClassTemplateSpecializationDecl(), clang::ASTNodeImporter::VisitEmptyDecl(), clang::ASTNodeImporter::VisitFriendDecl(), clang::ASTNodeImporter::VisitLinkageSpecDecl(), clang::ASTNodeImporter::VisitObjCCategoryImplDecl(), clang::ASTNodeImporter::VisitObjCPropertyImplDecl(), clang::ASTNodeImporter::VisitStaticAssertDecl(), and clang::ASTNodeImporter::VisitVarTemplateSpecializationDecl().
void DeclContext::addHiddenDecl | ( | Decl * | D | ) |
Add the declaration D to this context without modifying any lookup tables.
This is useful for some operations in dependent contexts where the semantic context might not be dependent; this basically only happens with friends.
Definition at line 1481 of file DeclBase.cpp.
References clang::ASTContext::addedLocalImportDecl(), clang::Decl::getASTContext(), clang::Decl::getLexicalDeclContext(), clang::Decl::getNextDeclInContext(), and clang::Decl::isFromASTFile().
Referenced by buildCaptureDecl(), clang::Sema::BuildVariableInstantiation(), FinishForRangeVarDecl(), and clang::TemplateDeclInstantiator::VisitVarDecl().
|
staticprotected |
Build up a chain of declarations.
Definition at line 1240 of file DeclBase.cpp.
References clang::ExternalASTSource::FindExternalLexicalDecls(), and clang::Decl::NextInContextAndBits.
Referenced by clang::RecordDecl::isMsStruct().
StoredDeclsMap * DeclContext::buildLookup | ( | ) |
Ensure the lookup structure is fully-built and return it.
buildLookup - Build the lookup data structure with all of the declarations in this DeclContext (and any other contexts linked to it or transparent contexts nested within it) and return it.
Note that the produced map may miss out declarations from an external source. If it does, those entries will be marked with the 'hasExternalDecls' flag.
Definition at line 1530 of file DeclBase.cpp.
Referenced by lookups().
Definition at line 1021 of file DeclBase.cpp.
References clang::Decl::getKind(), and ~DeclContext().
|
inlinestatic |
Definition at line 2354 of file DeclBase.h.
References clang::C.
void DeclContext::collectAllContexts | ( | SmallVectorImpl< DeclContext *> & | Contexts | ) |
Collects all of the declaration contexts that are semantically connected to this declaration context.
For declaration contexts that have multiple semantically connected but syntactically distinct contexts, such as C++ namespaces, this routine retrieves the complete set of such declaration contexts in source order. For example, given:
The Contexts
parameter will contain both definitions of N.
Contexts | Will be cleared and set to the set of declaration contexts that are semanticaly connected to this declaration context, in source order, including this context (which may be the only result, for non-namespace contexts). |
Definition at line 1223 of file DeclBase.cpp.
Checks whether a declaration is in this context.
Definition at line 1384 of file DeclBase.cpp.
References clang::Decl::getLexicalDeclContext(), and clang::Decl::NextInContextAndBits.
Referenced by clang::Sema::CreateUnaryExprOrTypeTraitExpr().
Checks whether a declaration is in this context.
This also loads the Decls from the external source before the check.
Definition at line 1389 of file DeclBase.cpp.
|
inline |
Definition at line 176 of file DependentDiagnostic.h.
Referenced by clang::Sema::PerformDependentDiagnostics().
|
inline |
decls_begin/decls_end - Iterate over the declarations stored in this context.
Definition at line 1997 of file DeclBase.h.
Referenced by clang::ODRHash::AddCXXRecordDecl(), clang::ODRHash::AddEnumDecl(), clang::ODRHash::AddFunctionDecl(), AddInterfaceResults(), clang::CallGraph::addNodesForBlocks(), AddProtocolResults(), AllTrivialInitializers(), clang::RecursiveASTVisitor< CallGraph >::canIgnoreChildDeclWhileTraversingDeclContext(), CheckAbstractClassUsage(), checkForMultipleExportedDefaultConstructors(), DiagnoseNamespaceInlineMismatch(), clang::Sema::DiagnoseUnusedNestedTypedefs(), findDefaultInitializer(), clang::cross_tu::CrossTranslationUnitContext::getLookupName(), clang::ASTReader::getOwningModuleNameForDiagnostic(), GroupNewVirtualOverloads(), clang::ASTNodeImporter::ImportDeclContext(), clang::index::IndexingContext::indexDeclContext(), clang::Sema::InstantiateClass(), clang::Sema::InstantiateClassMembers(), isFunctionLocalClass(), isImportedDeclContext(), ReferenceDllExportedMembers(), and Scan().
DeclContext::decl_iterator DeclContext::decls_begin | ( | ) | const |
Definition at line 1371 of file DeclBase.cpp.
Referenced by cleanupDeallocOrFinalize(), clang::EnumDecl::enumerator_begin(), findUserDeclaredCtor(), GCRewriteFinalize(), hasSuperInitCall(), isTrackedVar(), MethodsAndNestedClassesComplete(), and clang::LexicallyOrderedRecursiveASTVisitor< Derived >::TraverseDeclContextHelper().
bool DeclContext::decls_empty | ( | ) | const |
Definition at line 1377 of file DeclBase.cpp.
|
inline |
Definition at line 1999 of file DeclBase.h.
Referenced by cleanupDeallocOrFinalize(), clang::EnumDecl::enumerator_end(), findUserDeclaredCtor(), GCRewriteFinalize(), hasSuperInitCall(), isTrackedVar(), MethodsAndNestedClassesComplete(), and clang::LexicallyOrderedRecursiveASTVisitor< Derived >::TraverseDeclContextHelper().
LLVM_DUMP_METHOD void DeclContext::dumpDeclContext | ( | ) | const |
Definition at line 195 of file DeclPrinter.cpp.
References getParent(), clang::ASTContext::getPrintingPolicy(), and isTranslationUnit().
LLVM_DUMP_METHOD void DeclContext::dumpLookups | ( | ) | const |
Definition at line 1586 of file ASTDumper.cpp.
References clang::ASTContext::getCommentCommandTraits(), clang::SourceManager::getDiagnostics(), getParent(), clang::ASTContext::getPrintingPolicy(), clang::DiagnosticsEngine::getShowColors(), clang::ASTContext::getSourceManager(), isTranslationUnit(), P, and SM.
void clang::DeclContext::dumpLookups | ( | llvm::raw_ostream & | OS, |
bool | DumpDecls = false , |
||
bool | Deserialize = false |
||
) | const |
bool DeclContext::Encloses | ( | const DeclContext * | DC | ) | const |
Determine whether this declaration context encloses the declaration context DC.
Definition at line 1148 of file DeclBase.cpp.
References getParent(), and getPrimaryContext().
Referenced by clang::Sema::ActOnUsingDirective(), CheckExplicitInstantiationScope(), clang::Sema::CheckShadow(), CheckTemplateSpecializationScope(), diagnoseInstanceReference(), DiagnoseTwoPhaseLookup(), DoMarkVarDeclReferenced(), findOuterContext(), and clang::Sema::isOpenMPCapturedDecl().
|
inline |
Determine whether this declaration context is equivalent to the declaration context DC.
Definition at line 1872 of file DeclBase.h.
References getPrimaryContext().
Referenced by clang::Sema::CheckShadow(), CheckTemplateSpecializationScope(), CloneDesignatedInitExpr(), diagnoseInstanceReference(), clang::Sema::FindInstantiatedDecl(), findOuterContext(), getStackIndexOfNearestEnclosingCaptureReadyLambda(), InEnclosingNamespaceSetOf(), clang::CXXRecordDecl::isCurrentInstantiation(), and LookupVisibleDecls().
|
inline |
Definition at line 1745 of file DeclBase.h.
References clang::Decl::getDeclKindName().
Referenced by clang::ODRHash::AddFunctionDecl(), clang::Decl::castFromDeclContext(), clang::serialization::getDefinitiveDeclContext(), getExternCContext(), getKind(), clang::Sema::getObjCContainerKind(), getOutermostFuncOrBlockContext(), clang::VarDecl::isFunctionOrMethodVarDecl(), isLinkageSpecContext(), IsUsingDirectiveInToplevelContext(), and LookupMethodInReceiverType().
const char * DeclContext::getDeclKindName | ( | ) | const |
Definition at line 155 of file DeclBase.cpp.
DeclContext * DeclContext::getEnclosingNamespaceContext | ( | ) |
Retrieve the nearest enclosing namespace context.
Definition at line 1748 of file DeclBase.cpp.
References getParent(), getPrimaryContext(), and isFileContext().
Referenced by CheckExplicitInstantiationScope(), isDefinedInClangModule(), and clang::AnalysisDeclContext::isInStdNamespace().
|
inline |
Definition at line 1909 of file DeclBase.h.
const LinkageSpecDecl * DeclContext::getExternCContext | ( | ) | const |
Retrieve the nearest enclosing C linkage specification context.
Definition at line 1133 of file DeclBase.cpp.
References getDeclKind(), getLexicalParent(), and clang::LinkageSpecDecl::lang_c.
Referenced by clang::Sema::CheckLiteralOperatorDeclaration(), and clang::Sema::CheckTemplateDeclScope().
|
inline |
getLexicalParent - Returns the containing lexical DeclContext.
May be different from getParent, e.g.:
namespace A { struct S; } struct A::S {}; // getParent() == namespace 'A' // getLexicalParent() == translation unit
Definition at line 1768 of file DeclBase.h.
References clang::Decl::getLexicalDeclContext().
Referenced by clang::ODRHash::AddFunctionDecl(), clang::Sema::CheckShadow(), clang::Sema::getContainingDC(), clang::Sema::getCurrentMangleNumberContext(), getExternCContext(), getOuterLexicalRecordContext(), clang::Sema::hasVisibleMemberSpecialization(), clang::Decl::isExported(), isInInlineFunction(), clang::Decl::isLexicallyWithinFunctionOrMethod(), and isLinkageSpecContext().
|
inline |
Definition at line 1771 of file DeclBase.h.
DeclContext * DeclContext::getLookupParent | ( | ) |
Find the parent context of this context that will be used for unqualified name lookup.
Generally, the parent lookup context is the semantic context. However, for a friend function the parent lookup context is the lexical context, which is the class in which the friend is declared.
Definition at line 1047 of file DeclBase.cpp.
Referenced by AddTopLevelDeclarationToHash(), findRecordWithDependentBasesOfEnclosingMethod(), and LookupVisibleDecls().
|
inline |
Definition at line 1777 of file DeclBase.h.
|
inline |
Retrieve the internal representation of the lookup structure.
This may omit some names if we are lazily building the structure.
Definition at line 2305 of file DeclBase.h.
Referenced by noload_lookups().
Decl * DeclContext::getNonClosureAncestor | ( | ) |
Find the nearest non-closure ancestor of this context, i.e.
the innermost semantic parent of this context which is not a closure. A context may be its own non-closure ancestor.
Definition at line 1003 of file DeclBase.cpp.
References getNonClosureContext().
Referenced by LookupMethodInReceiverType().
|
inline |
Definition at line 1884 of file DeclBase.h.
RecordDecl * DeclContext::getOuterLexicalRecordContext | ( | ) |
Retrieve the outermost lexically enclosing record context.
Definition at line 1756 of file DeclBase.cpp.
References getLexicalParent(), and isRecord().
Referenced by clang::Sema::InstantiateInClassInitializer().
|
inline |
Definition at line 1915 of file DeclBase.h.
|
inline |
getParent - Returns the containing DeclContext.
Definition at line 1752 of file DeclBase.h.
References clang::Decl::getDeclContext().
Referenced by clang::Sema::ActOnFinishFullExpr(), clang::Sema::ActOnSEHTryBlock(), clang::Sema::ActOnUsingDirective(), clang::ODRHash::AddCXXRecordDecl(), clang::ODRHash::AddFunctionDecl(), clang::Sema::adjustContextForLocalExternDecl(), adjustCVQualifiersForCXXThisWithinLambda(), clang::Sema::CheckConstructorAccess(), CheckIfAnyEnclosingLambdasMustCaptureAnyPotentialCaptures(), clang::Sema::CheckParmsForFunctionDef(), clang::Sema::CheckQualifiedMemberReference(), clang::Sema::CheckShadow(), clang::Sema::CheckUsingShadowDecl(), ClassifyImplicitMemberAccess(), CollectEnclosingNamespace(), clang::Sema::CreateCapturedStmtRecordDecl(), clang::ento::ExprEngine::CreateCXXTemporaryObject(), clang::Sema::createLambdaClosureType(), clang::ASTContext::DeclMustBeEmitted(), DiagnoseNamespaceInlineMismatch(), DiagnoseTwoPhaseLookup(), dumpDeclContext(), dumpLookups(), Encloses(), clang::Sema::FindInstantiatedDecl(), findOuterContext(), findRecordWithDependentBasesOfEnclosingMethod(), getBestNamespaceSubstr(), clang::CXXMethodDecl::getCorrespondingMethodInClass(), clang::Sema::getCurMethodDecl(), clang::Sema::getCurrentMangleNumberContext(), getEnclosingNamespaceContext(), getExternalLinkageFor(), clang::Sema::getFunctionLevelDeclContext(), clang::getLambdaAwareParentOfDeclContext(), getNullabilityCompletenessCheckFileID(), getOutermostEnclosingLambda(), getOutermostFuncOrBlockContext(), clang::getParameterABISpelling(), clang::CXXMethodDecl::getParent(), getRedeclContext(), clang::AnalysisDeclContext::getSelfDecl(), getStaticBooleanValue(), getTagInjectionContext(), clang::CXXMethodDecl::getThisType(), clang::Decl::getTranslationUnitDecl(), HandleConstructorCall(), clang::CodeGen::CodeGenModule::HasHiddenLTOVisibility(), InEnclosingNamespaceSetOf(), clang::TemplateDeclInstantiator::InstantiateEnumDefinition(), clang::Sema::InstantiateFunctionDeclaration(), clang::ento::CallEvent::isCalled(), clang::CXXRecordDecl::isCurrentInstantiation(), isDeclContextInNamespace(), IsDisallowedCopyOrAssign(), clang::FunctionDecl::isGlobal(), clang::Decl::isInAnonymousNamespace(), clang::Sema::IsInsideALocalClassWithinATemplateFunction(), clang::CXXMethodDecl::isLambdaStaticInvoker(), isReferenceToNonConstCapture(), IsUsingDirectiveInToplevelContext(), clang::MangleContext::mangleBlock(), clang::CodeGen::CGRecordLayout::print(), clang::FieldDecl::setCapturedVLAType(), clang::Sema::tryCaptureVariable(), tryImplicitlyCaptureThisIfImplicitMemberFunctionAccessWithDependentArgs(), clang::FunctionCallFilterCCC::ValidateCandidate(), clang::ento::ExprEngine::VisitCommonDeclRefExpr(), clang::ASTDeclWriter::VisitDecl(), and clang::ASTDeclWriter::VisitNamespaceDecl().
|
inline |
Definition at line 1755 of file DeclBase.h.
|
inline |
Definition at line 1781 of file DeclBase.h.
References clang::Decl::getASTContext().
Referenced by findVar(), clang::CXXRecordDecl::getLambdaContextDecl(), clang::Type::getObjCSubstitutions(), isAmbiguousNameInScope(), lookups(), and clang::QualType::substObjCMemberType().
DeclContext * DeclContext::getPrimaryContext | ( | ) |
getPrimaryContext - There may be many different declarations of the same entity (including forward declarations of classes, multiple definitions of namespaces, etc.), each with a different set of declarations.
This routine returns the "primary" DeclContext structure, which will contain the information needed to perform name lookup into this context.
Definition at line 1158 of file DeclBase.cpp.
References clang::TagDecl::getDefinition(), and clang::TagDecl::isBeingDefined().
Referenced by clang::ASTImporterLookupTable::add(), CollectEnclosingNamespace(), clang::ASTImporterLookupTable::dump(), Encloses(), Equals(), findRecordWithDependentBasesOfEnclosingMethod(), getEnclosingNamespaceContext(), clang::Sema::getScopeForContext(), isImportedDeclContext(), lookups(), LookupVisibleDecls(), makeDeclVisibleInContext(), MightInstantiateTo(), noload_lookups(), clang::ASTImporterLookupTable::remove(), and clang::ASTDeclWriter::VisitNamespaceDecl().
|
inline |
Definition at line 1895 of file DeclBase.h.
DeclContext * DeclContext::getRedeclContext | ( | ) |
getRedeclContext - Retrieve the context in which an entity conflicts with other entities of the same name, or where it is a redeclaration if the two entities are compatible.
This skips through transparent contexts.
Definition at line 1730 of file DeclBase.cpp.
References clang::ASTContext::getLangOpts(), getParent(), isRecord(), and isTransparentContext().
Referenced by clang::ASTImporterLookupTable::add(), adjustDeclContextForDeclaratorDecl(), clang::Sema::CheckCompleteVariableDeclaration(), clang::Sema::CheckDeductionGuideDeclarator(), clang::Sema::CheckDependentFunctionTemplateSpecialization(), CheckExplicitInstantiationScope(), clang::Sema::CheckFunctionTemplateSpecialization(), clang::Sema::CheckObjCDeclScope(), CheckOperatorNewDeleteDeclarationScope(), clang::Sema::CheckShadow(), clang::Sema::CheckTemplateDeclScope(), CheckTemplateSpecializationScope(), clang::Sema::CheckUsingDeclQualifier(), CloneDesignatedInitExpr(), clang::ASTReader::CompleteRedeclChain(), clang::LinkageComputer::computeLVForDecl(), clang::TypeName::createNestedNameSpecifierForScopeOf(), clang::NamedDecl::declarationReplaces(), clang::ASTContext::forEachMultiversionedFunctionVersion(), getContextForScopeMatching(), getDeclForLocalLookup(), clang::getDeclUsageType(), clang::NamedDecl::getExplicitVisibility(), getExternalLinkageFor(), getFunctionStorageClass(), clang::NamedDecl::isCXXClassMember(), clang::VarDecl::isFunctionOrMethodVarDecl(), clang::FunctionDecl::isMain(), clang::FunctionDecl::isMSVCRTEntryPoint(), clang::FunctionDecl::isReplaceableGlobalAllocationFunction(), clang::FunctionDecl::isReservedGlobalPlacementOperator(), isSameEntity(), clang::ASTImporterLookupTable::remove(), shouldConsiderLinkage(), shouldIgnoreDueToReservedName(), and clang::ASTDeclWriter::VisitNamespaceDecl().
|
inline |
Definition at line 1903 of file DeclBase.h.
|
inline |
Whether this DeclContext has external storage containing additional declarations that are lexically in this context.
Definition at line 2312 of file DeclBase.h.
Referenced by clang::ExternalASTMerger::CanComplete(), clang::ExternalASTMerger::CompleteType(), clang::RecordDecl::field_begin(), clang::ASTContext::getASTRecordLayout(), isDiagnosedResult(), and clang::RecordDecl::isMsStruct().
|
inline |
Whether this DeclContext has external storage containing additional declarations that are visible in this context.
Definition at line 2324 of file DeclBase.h.
Referenced by clang::ExternalASTMerger::CanComplete(), clang::ASTReader::completeVisibleDeclsMap(), and lookups().
bool DeclContext::InEnclosingNamespaceSetOf | ( | const DeclContext * | NS | ) | const |
Test if this context is part of the enclosing namespace set of the context NS, as defined in C++0x [namespace.def]p9.
If either context isn't a namespace, this is equivalent to Equals().
The enclosing namespace set of a namespace is the namespace and, if it is inline, its enclosing namespace, recursively.
Definition at line 1767 of file DeclBase.cpp.
References Equals(), and getParent().
Referenced by clang::Sema::CheckDependentFunctionTemplateSpecialization(), CheckExplicitInstantiationScope(), and clang::Sema::CheckFunctionTemplateSpecialization().
|
inline |
Definition at line 1785 of file DeclBase.h.
Determine whether the given declaration is stored in the list of declarations lexically within this context.
Definition at line 2338 of file DeclBase.h.
References clang::Decl::NextInContextAndBits.
Referenced by clang::ASTReader::FindExternalLexicalDecls().
bool DeclContext::isDependentContext | ( | ) | const |
Determines whether this context is dependent on a template parameter.
Definition at line 1078 of file DeclBase.cpp.
Referenced by clang::Sema::ActOnFinishFunctionBody(), clang::ASTRecordWriter::AddFunctionDefinition(), AddKeywordsToConsumer(), clang::CXXMethodDecl::addOverriddenMethod(), clang::Sema::adjustContextForLocalExternDecl(), clang::Sema::AdjustDestructorExceptionSpec(), buildDeclareReductionRef(), clang::Sema::BuildVariableInstantiation(), CanDeclareSpecialMemberFunction(), clang::Sema::canFullyTypeCheckRedeclaration(), checkForMultipleExportedDefaultConstructors(), CheckIfAnyEnclosingLambdasMustCaptureAnyPotentialCaptures(), checkMoveAssignmentForRepeatedMove(), checkOpenMPLoop(), CheckOperatorDeleteDeclaration(), clang::Sema::CheckPureMethod(), clang::Sema::CheckTemplateArgument(), clang::Sema::CheckTemplatePartialSpecializationArgs(), checkTypeMappable(), clang::Sema::CheckUsingDeclQualifier(), clang::Sema::checkVarDeclRedefinition(), computeDeclRefDependence(), clang::Sema::DeclareImplicitDeductionGuides(), clang::ASTContext::DeclMustBeEmitted(), clang::Sema::DeduceFunctionTypeFromReturnExpr(), DiagnoseBaseOrMemInitializerOrder(), clang::Sema::FinalizeVarWithDestructor(), clang::Sema::FindInstantiatedDecl(), findRecordWithDependentBasesOfEnclosingMethod(), clang::CXXRecordDecl::forallBases(), getCurrentInstantiationOf(), getStackIndexOfNearestEnclosingCaptureReadyLambda(), clang::CXXRecordDecl::hasAnyDependentBases(), clang::TemplateDeclInstantiator::InstantiateEnumDefinition(), clang::TemplateArgument::isDependent(), IsDerivedFromInclusive(), clang::TemplateArgument::isInstantiationDependent(), IsKnownEmitted(), isOdrUseContext(), clang::Expr::isPotentialConstantExpr(), clang::Sema::LookupParsedName(), clang::Sema::LookupQualifiedName(), clang::Sema::MarkBaseAndMemberDestructorsReferenced(), clang::Sema::MarkVTableUsed(), clang::CXXRecordDecl::mayBeAbstract(), clang::Sema::MaybeBindToTemporary(), clang::serialization::needsAnonymousDeclarationNumber(), clang::Sema::RequireCompleteDeclContext(), clang::Sema::SetCtorInitializers(), clang::Sema::shouldLinkDependentDeclWithPrevious(), clang::Sema::ShouldWarnIfUnusedFileScopedDecl(), clang::Sema::startLambdaDefinition(), and tryImplicitlyCaptureThisIfImplicitMemberFunctionAccessWithDependentArgs().
bool DeclContext::isExternCContext | ( | ) | const |
Determines whether this context or some of its ancestors is a linkage specification context that specifies C linkage.
Definition at line 1129 of file DeclBase.cpp.
References isLinkageSpecContext(), and clang::LinkageSpecDecl::lang_c.
Referenced by clang::Sema::ActOnStartOpenMPDeclareTargetDirective(), clang::Sema::CheckTemplateDeclScope(), clang::VarDecl::isInExternCContext(), clang::FunctionDecl::isInExternCContext(), and clang::CXXRecordDecl::isInterfaceLike().
bool DeclContext::isExternCXXContext | ( | ) | const |
Determines whether this context or some of its ancestors is a linkage specification context that specifies C++ linkage.
Definition at line 1144 of file DeclBase.cpp.
References isLinkageSpecContext(), and clang::LinkageSpecDecl::lang_cxx.
Referenced by clang::Sema::ActOnStartOpenMPDeclareTargetDirective(), clang::VarDecl::isInExternCXXContext(), and clang::FunctionDecl::isInExternCXXContext().
|
inline |
Definition at line 1818 of file DeclBase.h.
Referenced by clang::Sema::ActOnFinishObjCImplementation(), clang::Sema::ActOnStartOpenMPDeclareTargetDirective(), clang::ASTUnit::addFileLevelDecl(), clang::ODRHash::AddFunctionDecl(), clang::Sema::adjustContextForLocalExternDecl(), clang::Sema::CheckCompleteVariableDeclaration(), clang::Sema::CheckTemplateDeclScope(), CheckTemplateSpecializationScope(), CollectEnclosingNamespace(), clang::LinkageComputer::computeLVForDecl(), computeShadowedDeclKind(), clang::Sema::CreateCapturedStmtRecordDecl(), clang::Sema::createLambdaClosureType(), clang::Sema::FindInstantiatedDecl(), findOuterContext(), clang::ASTWriter::getDeclID(), getEnclosingNamespaceContext(), getExternalLinkageFor(), getTagInjectionContext(), clang::Sema::getTemplateInstantiationArgs(), clang::Sema::hasVisibleMemberSpecialization(), clang::CXXRecordDecl::isCurrentInstantiation(), isInInlineFunction(), isNamespaceOrTranslationUnitScope(), isNamespaceScope(), LookupQualifiedNameInUsingDirectives(), MightInstantiateTo(), shouldConsiderLinkage(), clang::Sema::shouldLinkDependentDeclWithPrevious(), and clang::TemplateDeclInstantiator::VisitFunctionDecl().
|
inline |
Definition at line 1800 of file DeclBase.h.
Referenced by clang::Sema::ActOnSEHTryBlock(), clang::CodeCompletionBuilder::addParentContext(), clang::Sema::adjustContextForLocalExternDecl(), clang::Sema::BuildVariableInstantiation(), clang::Sema::CheckParmsForFunctionDef(), CheckTemplateSpecializationScope(), computeCachedProperties(), clang::LinkageComputer::computeLVForDecl(), clang::Sema::CreateCapturedStmtRecordDecl(), clang::Sema::createLambdaClosureType(), DoMarkVarDeclReferenced(), clang::Sema::FindInstantiatedDecl(), getContextForScopeMatching(), clang::getDeclUsageType(), getFunctionStorageClass(), clang::getParameterABISpelling(), clang::MaterializeTemporaryExpr::getStorageDuration(), getTagInjectionContext(), clang::TemplateDeclInstantiator::InstantiateEnumDefinition(), isConsumerInterestedIn(), isDeclWithinFunction(), clang::VarDecl::isFunctionOrMethodVarDecl(), clang::Decl::isLexicallyWithinFunctionOrMethod(), LookupVisibleDecls(), clang::serialization::needsAnonymousDeclarationNumber(), clang::NamedDecl::printQualifiedName(), clang::Sema::PushUsingDirective(), shouldConsiderLinkage(), ShouldDiagnoseUnusedDecl(), shouldIgnoreDueToReservedName(), clang::TemplateDeclInstantiator::VisitFunctionDecl(), clang::ASTDeclReader::VisitVarDeclImpl(), and warnAboutAmbiguousFunction().
bool DeclContext::isInlineNamespace | ( | ) | const |
Definition at line 1057 of file DeclBase.cpp.
Referenced by CollectEnclosingNamespace().
|
inline |
Test whether the context supports looking up names.
Definition at line 1813 of file DeclBase.h.
References isFunctionOrMethod().
Referenced by isImportedDeclContext().
|
inline |
Definition at line 1832 of file DeclBase.h.
References isStdNamespace().
Referenced by clang::TemplateDeclInstantiator::InstantiateEnumDefinition(), isDeclContextInNamespace(), clang::FunctionDecl::isGlobal(), clang::Sema::IsInsideALocalClassWithinATemplateFunction(), isStdNamespace(), and isTemplate().
|
inline |
Definition at line 1787 of file DeclBase.h.
Referenced by clang::Sema::CodeCompleteObjCMethodDecl(), and LookupMethodInReceiverType().
|
inline |
Definition at line 1827 of file DeclBase.h.
Referenced by clang::comments::Sema::checkDeprecatedCommand(), CheckExplicitInstantiationScope(), clang::Sema::CheckQualifiedMemberReference(), clang::Sema::CheckShadow(), CheckTemplateSpecializationScope(), clang::Sema::CheckUsingDeclQualifier(), ClassifyMemberExpr(), CollectEnclosingNamespace(), clang::LinkageComputer::computeLVForDecl(), clang::Sema::CreateCapturedStmtRecordDecl(), clang::Sema::createLambdaClosureType(), clang::getDeclUsageType(), getOuterLexicalRecordContext(), getRedeclContext(), clang::Sema::getShadowedDeclaration(), haveIncompatibleLanguageLinkages(), clang::NamedDecl::isCXXClassMember(), isDeclExternC(), isDeclWithinFunction(), clang::RecordDecl::isInjectedClassName(), clang::Sema::MergeVarDecl(), shouldConsiderLinkage(), and clang::TemplateDeclInstantiator::VisitFunctionDecl().
bool DeclContext::isStdNamespace | ( | ) | const |
Definition at line 1062 of file DeclBase.cpp.
References clang::IdentifierInfo::isStr().
Referenced by clang::AnalysisDeclContext::isInStdNamespace(), clang::Decl::isInStdNamespace(), and clang::Sema::isLibstdcxxEagerExceptionSpecHack().
|
inline |
Definition at line 1823 of file DeclBase.h.
Referenced by clang::CodeCompletionBuilder::addParentContext(), AddTopLevelDeclarationToHash(), clang::TypeName::createNestedNameSpecifierForScopeOf(), clang::TypeName::createOuterNNS(), dumpDeclContext(), dumpLookups(), clang::getParameterABISpelling(), clang::Decl::getParentFunctionOrMethod(), getStackIndexOfNearestEnclosingCaptureReadyLambda(), clang::Sema::getTemplateInstantiationArgs(), clang::Decl::getTranslationUnitDecl(), isDeclContextInNamespace(), IsDisallowedCopyOrAssign(), clang::Sema::IsInsideALocalClassWithinATemplateFunction(), clang::FunctionDecl::isReplaceableGlobalAllocationFunction(), clang::FunctionDecl::isReservedGlobalPlacementOperator(), isTemplate(), LookupDirect(), clang::Parser::ParseTopLevelDecl(), and RedeclForcesDefC99().
bool DeclContext::isTransparentContext | ( | ) | const |
isTransparentContext - Determines whether this context is a "transparent" context, meaning that the members declared in this context are semantically declared in the nearest enclosing non-transparent (opaque) context but are lexically declared in this context.
For example, consider the enumerators of an enumeration type:
Here, E is a transparent context, so its enumerator (Val1) will appear (semantically) that it is in the same context of E. Examples of transparent contexts include: enumerations (except for C++0x scoped enums), and C++ linkage specifications.
Definition at line 1110 of file DeclBase.cpp.
Referenced by clang::Sema::CheckQualifiedMemberReference(), CollectEnclosingNamespace(), and getRedeclContext().
void DeclContext::localUncachedLookup | ( | DeclarationName | Name, |
SmallVectorImpl< NamedDecl *> & | Results | ||
) |
A simplistic name lookup mechanism that performs name lookup into this declaration context without consulting the external source.
This function should almost never be used, because it subverts the usual relationship between a DeclContext and the external source. See the ASTImporter for the (few, but important) use cases.
FIXME: This is very inefficient; replace uses of it with uses of noload_lookup.
Definition at line 1692 of file DeclBase.cpp.
DeclContext::lookup_result DeclContext::lookup | ( | DeclarationName | Name | ) | const |
lookup - Find the declarations (if any) with the given Name in this context.
Returns a range of iterators that contains all of the declarations with this name, with object, function, member, and enumerator names preceding any tag name. Note that this routine will not look into parent contexts.
Definition at line 1595 of file DeclBase.cpp.
Referenced by clang::Sema::BuildBlockForLambdaConversion(), clang::Sema::CheckCompletedCXXClass(), ClassImplementsAllMethodsAndProperties(), configureBlocksRuntimeObject(), clang::Sema::DeclareImplicitDeductionGuides(), clang::ObjCPropertyDecl::findPropertyDecl(), clang::ASTContext::forEachMultiversionedFunctionVersion(), clang::CodeGen::CodeGenModule::GetAddrOfConstantCFString(), clang::CXXMethodDecl::getCorrespondingMethodInClass(), clang::ComparisonCategoryInfo::ValueInfo::getIntValue(), clang::ObjCContainerDecl::getIvarDecl(), clang::ObjCContainerDecl::getMethod(), clang::ASTContext::getObjCMethodRedeclaration(), clang::ObjCContainerDecl::HasUserDeclaredSetterMethod(), clang::Sema::InstantiateClassMembers(), clang::TemplateDeclInstantiator::InstantiateEnumDefinition(), clang::TemplateDeclInstantiator::InstantiateTypedefNameDecl(), LookupDirect(), lookupStdNamespace(), clang::TreeTransform< Derived >::RebuildShuffleVectorExpr(), and clang::ASTDeclReader::VisitDecl().
|
inline |
Definition at line 76 of file DeclLookups.h.
References clang::DeclContext::all_lookups_iterator::all_lookups_iterator(), buildLookup(), clang::ExternalASTSource::completeVisibleDeclsMap(), clang::ASTContext::getExternalSource(), getParentASTContext(), getPrimaryContext(), and hasExternalVisibleStorage().
all_lookups_iterator clang::DeclContext::lookups_begin | ( | ) | const |
Iterators over all possible lookups within this context.
all_lookups_iterator clang::DeclContext::lookups_end | ( | ) | const |
void DeclContext::makeDeclVisibleInContext | ( | NamedDecl * | D | ) |
Makes a declaration visible within this context.
This routine makes the declaration D visible to name lookup within this context and, if this is a transparent context, within its parent contexts up to the first enclosing non-transparent context. Making a declaration visible within a context does not transfer ownership of a declaration, and a declaration can be visible in many contexts that aren't its lexical context.
If D is a redeclaration of an existing declaration that is visible from this context, as determined by NamedDecl::declarationReplaces, the previous declaration will be replaced with D.
Definition at line 1785 of file DeclBase.cpp.
References clang::StoredDeclsList::AddSubsequentDecl(), clang::C, clang::Decl::getDeclContext(), clang::NamedDecl::getDeclName(), clang::Decl::getLexicalDeclContext(), getPrimaryContext(), clang::StoredDeclsList::HandleRedeclaration(), clang::StoredDeclsList::isNull(), clang::StoredDeclsList::setHasExternalDecls(), clang::StoredDeclsList::setOnlyValue(), and shouldBeHidden().
Referenced by clang::Sema::BuildVariableInstantiation(), clang::Sema::CheckImplementationIvars(), DiagnoseNamespaceInlineMismatch(), clang::TemplateDeclInstantiator::InstantiateEnumDefinition(), clang::TemplateDeclInstantiator::VisitCXXMethodDecl(), and clang::TemplateDeclInstantiator::VisitFunctionDecl().
|
inline |
noload_decls_begin/end - Iterate over the declarations stored in this context that are currently loaded; don't attempt to retrieve anything from an external source.
Definition at line 2005 of file DeclBase.h.
Referenced by AddLazyVectorDecls().
|
inline |
Definition at line 2008 of file DeclBase.h.
|
inline |
Definition at line 2009 of file DeclBase.h.
DeclContext::lookup_result DeclContext::noload_lookup | ( | DeclarationName | Name | ) |
Find the declarations with the given name that are visible within this context; don't attempt to retrieve anything from an external source.
Definition at line 1660 of file DeclBase.cpp.
|
inline |
Definition at line 90 of file DeclLookups.h.
References clang::DeclContext::all_lookups_iterator::all_lookups_iterator(), getLookupPtr(), and getPrimaryContext().
all_lookups_iterator clang::DeclContext::noload_lookups_begin | ( | ) | const |
Iterators over all possible lookups within this context that are currently loaded; don't attempt to retrieve anything from an external source.
all_lookups_iterator clang::DeclContext::noload_lookups_end | ( | ) | const |
void DeclContext::removeDecl | ( | Decl * | D | ) |
Removes a declaration from this context.
Definition at line 1427 of file DeclBase.cpp.
References clang::Decl::getDeclContext(), clang::Decl::getLexicalDeclContext(), clang::Decl::NextInContextAndBits, and shouldBeHidden().
Referenced by clang::Sema::HideUsingShadowDecl().
State whether this DeclContext has external storage for declarations lexically in this context.
Definition at line 2318 of file DeclBase.h.
Referenced by isDiagnosedResult(), and clang::serialization::reader::ASTDeclContextNameLookupTrait::ReadDataInto().
State whether this DeclContext has external storage for declarations visible in this context.
Definition at line 2330 of file DeclBase.h.
|
inline |
Mark that there are external lexical declarations that we need to include in our lookup table (and that are not available as external visible lookups).
These extra lookup results will be found by walking the lexical declarations of this context. This should be used only if setHasExternalLexicalStorage() has been called on any decl context for which this is the primary context.
Definition at line 2297 of file DeclBase.h.
Referenced by isDiagnosedResult().
Definition at line 2343 of file DeclBase.h.
|
inline |
Definition at line 2349 of file DeclBase.h.
References clang::classof().
DeclContext::udir_range DeclContext::using_directives | ( | ) | const |
Returns iterator range [First, Last) of UsingDirectiveDecls stored within this context.
Definition at line 1894 of file DeclBase.cpp.
References clang::DeclContextLookupResult::begin(), clang::C, clang::StoredDeclsMap::DestroyAll(), clang::DeclContextLookupResult::end(), and clang::Result.
Referenced by LookupQualifiedNameInUsingDirectives().
|
friend |
For makeDeclVisibleInContextImpl.
Definition at line 1264 of file DeclBase.h.
|
friend |
For hasNeedToReconcileExternalVisibleStorage, hasLazyLocalLexicalLookups, hasLazyExternalLexicalLookups.
Definition at line 1272 of file DeclBase.h.
|
friend |
For CreateStoredDeclsMap.
Definition at line 1269 of file DeclBase.h.
|
friend |
For reconcileExternalVisibleStorage, CreateStoredDeclsMap, hasNeedToReconcileExternalVisibleStorage.
Definition at line 1267 of file DeclBase.h.
union { ... } |
This anonymous union stores the bits belonging to DeclContext and classes deriving from it.
The goal is to use otherwise wasted space in DeclContext to store data belonging to derived classes. The space saved is especially significient when pointers are aligned to 8 bytes. In this case due to alignment requirements we have a little less than 8 bytes free in DeclContext which we can use. We check that none of the classes in this union is larger than 8 bytes with static_asserts in the ctor of DeclContext.
BlockDeclBitfields clang::DeclContext::BlockDeclBits |
Definition at line 1698 of file DeclBase.h.
CXXConstructorDeclBitfields clang::DeclContext::CXXConstructorDeclBits |
Definition at line 1694 of file DeclBase.h.
DeclContextBitfields clang::DeclContext::DeclContextBits |
Definition at line 1688 of file DeclBase.h.
EnumDeclBitfields clang::DeclContext::EnumDeclBits |
Definition at line 1690 of file DeclBase.h.
|
mutableprotected |
FirstDecl - The first declaration stored within this declaration context.
Definition at line 1726 of file DeclBase.h.
Referenced by clang::RecordDecl::field_begin(), and clang::RecordDecl::isMsStruct().
FunctionDeclBitfields clang::DeclContext::FunctionDeclBits |
Definition at line 1693 of file DeclBase.h.
Referenced by clang::FunctionDecl::setPure().
|
mutableprotected |
LastDecl - The last declaration stored within this declaration context.
FIXME: We could probably cache this value somewhere outside of the DeclContext, to reduce the size of DeclContext by another pointer.
Definition at line 1732 of file DeclBase.h.
Referenced by clang::RecordDecl::isMsStruct().
LinkageSpecDeclBitfields clang::DeclContext::LinkageSpecDeclBits |
Definition at line 1697 of file DeclBase.h.
ObjCContainerDeclBitfields clang::DeclContext::ObjCContainerDeclBits |
Definition at line 1696 of file DeclBase.h.
ObjCMethodDeclBitfields clang::DeclContext::ObjCMethodDeclBits |
Definition at line 1695 of file DeclBase.h.
Referenced by clang::ObjCMethodDecl::getMethodFamily(), and clang::ObjCInterfaceDecl::lookupPrivateMethod().
OMPDeclareReductionDeclBitfields clang::DeclContext::OMPDeclareReductionDeclBits |
Definition at line 1692 of file DeclBase.h.
RecordDeclBitfields clang::DeclContext::RecordDeclBits |
Definition at line 1691 of file DeclBase.h.
TagDeclBitfields clang::DeclContext::TagDeclBits |
Definition at line 1689 of file DeclBase.h.