clang
3.9.0
|
An array of decls optimized for the common case of only containing one entry. More...
#include <DeclContextInternals.h>
Public Types | |
typedef SmallVector< NamedDecl *, 4 > | DeclsTy |
When in vector form, this is what the Data pointer points to. More... | |
typedef llvm::PointerIntPair < DeclsTy *, 1, bool > | DeclsAndHasExternalTy |
A collection of declarations, with a flag to indicate if we have further external declarations. More... | |
Public Member Functions | |
StoredDeclsList () | |
StoredDeclsList (StoredDeclsList &&RHS) | |
~StoredDeclsList () | |
StoredDeclsList & | operator= (StoredDeclsList &&RHS) |
bool | isNull () const |
NamedDecl * | getAsDecl () const |
DeclsAndHasExternalTy | getAsVectorAndHasExternal () const |
DeclsTy * | getAsVector () const |
bool | hasExternalDecls () const |
void | setHasExternalDecls () |
void | setOnlyValue (NamedDecl *ND) |
void | remove (NamedDecl *D) |
void | removeExternalDecls () |
Remove any declarations which were imported from an external AST source. More... | |
DeclContext::lookup_result | getLookupResult () |
getLookupResult - Return an array of all the decls that this list represents. More... | |
bool | HandleRedeclaration (NamedDecl *D, bool IsKnownNewer) |
HandleRedeclaration - If this is a redeclaration of an existing decl, replace the old one with D and return true. More... | |
void | AddSubsequentDecl (NamedDecl *D) |
AddSubsequentDecl - This is called on the second and later decl when it is not a redeclaration to merge it into the appropriate place in our list. More... | |
Public Attributes | |
llvm::PointerUnion< NamedDecl *, DeclsAndHasExternalTy > | Data |
The stored data, which will be either a pointer to a NamedDecl, or a pointer to a vector with a flag to indicate if there are further external declarations. More... | |
An array of decls optimized for the common case of only containing one entry.
Definition at line 32 of file DeclContextInternals.h.
typedef llvm::PointerIntPair<DeclsTy *, 1, bool> clang::StoredDeclsList::DeclsAndHasExternalTy |
A collection of declarations, with a flag to indicate if we have further external declarations.
Definition at line 39 of file DeclContextInternals.h.
typedef SmallVector<NamedDecl *, 4> clang::StoredDeclsList::DeclsTy |
When in vector form, this is what the Data pointer points to.
Definition at line 35 of file DeclContextInternals.h.
|
inline |
Definition at line 47 of file DeclContextInternals.h.
Referenced by removeExternalDecls().
|
inline |
Definition at line 49 of file DeclContextInternals.h.
|
inline |
Definition at line 53 of file DeclContextInternals.h.
References getAsVector().
|
inline |
AddSubsequentDecl - This is called on the second and later decl when it is not a redeclaration to merge it into the appropriate place in our list.
Definition at line 190 of file DeclContextInternals.h.
References Data, getAsDecl(), getAsVector(), I, and isNull().
Referenced by clang::ExternalASTSource::SetExternalVisibleDeclsForName().
|
inline |
Definition at line 69 of file DeclContextInternals.h.
References Data.
Referenced by AddSubsequentDecl(), getLookupResult(), HandleRedeclaration(), remove(), removeExternalDecls(), and setHasExternalDecls().
|
inline |
Definition at line 77 of file DeclContextInternals.h.
References getAsVectorAndHasExternal().
Referenced by AddSubsequentDecl(), getLookupResult(), HandleRedeclaration(), operator=(), remove(), removeExternalDecls(), setHasExternalDecls(), setOnlyValue(), and ~StoredDeclsList().
|
inline |
Definition at line 73 of file DeclContextInternals.h.
References Data.
Referenced by getAsVector(), and hasExternalDecls().
|
inline |
getLookupResult - Return an array of all the decls that this list represents.
Definition at line 143 of file DeclContextInternals.h.
References getAsDecl(), getAsVector(), and isNull().
Referenced by clang::ExternalASTSource::SetExternalVisibleDeclsForName().
HandleRedeclaration - If this is a redeclaration of an existing decl, replace the old one with D and return true.
Otherwise return false.
Definition at line 164 of file DeclContextInternals.h.
References clang::NamedDecl::declarationReplaces(), getAsDecl(), getAsVector(), and setOnlyValue().
Referenced by clang::ExternalASTSource::SetExternalVisibleDeclsForName().
|
inline |
Definition at line 81 of file DeclContextInternals.h.
References getAsVectorAndHasExternal().
|
inline |
Definition at line 67 of file DeclContextInternals.h.
References Data.
Referenced by AddSubsequentDecl(), getLookupResult(), remove(), removeExternalDecls(), and clang::ExternalASTSource::SetExternalVisibleDeclsForName().
|
inline |
Definition at line 59 of file DeclContextInternals.h.
References Data, and getAsVector().
|
inline |
Definition at line 105 of file DeclContextInternals.h.
References Data, getAsDecl(), getAsVector(), I, and isNull().
|
inline |
Remove any declarations which were imported from an external AST source.
Definition at line 125 of file DeclContextInternals.h.
References Data, getAsDecl(), getAsVector(), isNull(), and StoredDeclsList().
Referenced by clang::ExternalASTSource::SetExternalVisibleDeclsForName().
|
inline |
Definition at line 85 of file DeclContextInternals.h.
References Data, getAsDecl(), and getAsVector().
|
inline |
Definition at line 96 of file DeclContextInternals.h.
References Data, and getAsVector().
Referenced by HandleRedeclaration(), and clang::ExternalASTSource::SetExternalVisibleDeclsForName().
llvm::PointerUnion<NamedDecl*, DeclsAndHasExternalTy> clang::StoredDeclsList::Data |
The stored data, which will be either a pointer to a NamedDecl, or a pointer to a vector with a flag to indicate if there are further external declarations.
Definition at line 44 of file DeclContextInternals.h.
Referenced by AddSubsequentDecl(), getAsDecl(), getAsVectorAndHasExternal(), isNull(), operator=(), remove(), removeExternalDecls(), setHasExternalDecls(), and setOnlyValue().