OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BindingDecl
(Results
1 - 25
of
28
) sorted by relevancy
1
2
/src/external/apache2/llvm/dist/clang/include/clang/Analysis/Analyses/
LiveVariables.h
35
llvm::ImmutableSet<const
BindingDecl
*> liveBindings;
44
llvm::ImmutableSet<const
BindingDecl
*> LiveBindings)
/src/external/apache2/llvm/dist/clang/lib/Analysis/
LiveVariables.cpp
32
llvm::ImmutableSet<const
BindingDecl
*>::Factory BSetFact;
73
for (const
BindingDecl
*BD : DD->bindings())
108
llvm::ImmutableSetRef<const
BindingDecl
*>
344
if (const
BindingDecl
* BD = dyn_cast<
BindingDecl
>(D)) {
373
if (const auto *BD = dyn_cast<
BindingDecl
>(D)) {
449
if (isa<VarDecl>(D) || isa<
BindingDecl
>(D)) {
/src/external/apache2/llvm/dist/clang/lib/AST/
ItaniumCXXABI.cpp
57
using BindingArray = ArrayRef<const
BindingDecl
*>;
104
using ArrayInfo = llvm::DenseMapInfo<ArrayRef<const
BindingDecl
*>>;
DeclCXX.cpp
2966
if (isa<
BindingDecl
>(ExtendingDecl))
3171
void
BindingDecl
::anchor() {}
3173
BindingDecl
*
BindingDecl
::Create(ASTContext &C, DeclContext *DC,
3175
return new (C, DC)
BindingDecl
(DC, IdLoc, Id);
3178
BindingDecl
*
BindingDecl
::CreateDeserialized(ASTContext &C, unsigned ID) {
3179
return new (C, ID)
BindingDecl
(nullptr, SourceLocation(), nullptr);
3182
VarDecl *
BindingDecl
::getHoldingVar() const {
3202
ArrayRef<
BindingDecl
*> Bindings)
[
all
...]
ExprClassification.cpp
461
isa<
BindingDecl
>(D) ||
Expr.cpp
3869
if (
BindingDecl
*BD = dyn_cast<
BindingDecl
>(DeclRef->getDecl()))
3908
if (auto *BD = dyn_cast<
BindingDecl
>(DRE->getDecl()))
TextNodeDumper.cpp
1722
void TextNodeDumper::VisitBindingDecl(const
BindingDecl
*D) {
/src/external/apache2/llvm/dist/clang/include/clang/Sema/
Template.h
31
class
BindingDecl
;
539
ArrayRef<
BindingDecl
*> *Bindings = nullptr);
Sema.h
89
class
BindingDecl
;
2621
NamedDecl *getShadowedDeclaration(const
BindingDecl
*D,
2654
ArrayRef<
BindingDecl
*> Bindings = None);
/src/external/apache2/llvm/dist/clang/include/clang/AST/
DeclCXX.h
3828
class
BindingDecl
: public ValueDecl {
3837
BindingDecl
(DeclContext *DC, SourceLocation IdLoc, IdentifierInfo *Id)
3845
static
BindingDecl
*Create(ASTContext &C, DeclContext *DC,
3847
static
BindingDecl
*CreateDeserialized(ASTContext &C, unsigned ID);
3862
/// Set the binding for this
BindingDecl
, along with its declared type (which
3870
/// Set the decomposed variable for this
BindingDecl
.
3887
private llvm::TrailingObjects<DecompositionDecl,
BindingDecl
*> {
3888
/// The number of
BindingDecl
*s following this object.
3894
ArrayRef<
BindingDecl
*> Bindings)
3899
getTrailingObjects<
BindingDecl
*>());
[
all
...]
TextNodeDumper.h
328
void VisitBindingDecl(const
BindingDecl
*D);
ASTNodeTraverser.h
440
void VisitBindingDecl(const
BindingDecl
*D) {
RecursiveASTVisitor.h
1985
DEF_TRAVERSE_DECL(
BindingDecl
, {
/src/external/apache2/llvm/dist/clang/lib/Index/
USRGeneration.cpp
101
void VisitBindingDecl(const
BindingDecl
*D);
345
void USRGenerator::VisitBindingDecl(const
BindingDecl
*D) {
/src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/
ASTMatchers.h
353
/// (matcher =
bindingDecl
()
358
extern const internal::VariadicDynCastAllOfMatcher<Decl,
BindingDecl
>
359
bindingDecl
;
7486
///
bindingDecl
(hasName("f"),
7490
AST_MATCHER_P(
BindingDecl
, forDecomposition, internal::Matcher<ValueDecl>,
7512
///
bindingDecl
(hasName("f").bind("fBinding"))))
7516
internal::Matcher<
BindingDecl
>, InnerMatcher) {
7536
/// decompositionDecl(hasAnyBinding(
bindingDecl
(hasName("f").bind("fBinding"))))
7539
AST_MATCHER_P(DecompositionDecl, hasAnyBinding, internal::Matcher<
BindingDecl
>,
/src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderDecl.cpp
379
void VisitBindingDecl(
BindingDecl
*BD);
1519
auto **BDs = DD->getTrailingObjects<
BindingDecl
*>();
1521
BDs[I] = readDeclAs<
BindingDecl
>();
1526
void ASTDeclReader::VisitBindingDecl(
BindingDecl
*BD) {
3994
D =
BindingDecl
::CreateDeserialized(Context, ID);
ASTWriterDecl.cpp
104
void VisitBindingDecl(
BindingDecl
*D);
1143
void ASTDeclWriter::VisitBindingDecl(
BindingDecl
*D) {
/src/external/apache2/llvm/dist/clang/lib/Sema/
SemaTemplateInstantiateDecl.cpp
979
Decl *TemplateDeclInstantiator::VisitBindingDecl(
BindingDecl
*D) {
980
auto *NewBD =
BindingDecl
::Create(SemaRef.Context, Owner, D->getLocation(),
989
SmallVector<
BindingDecl
*, 16> NewBindings;
991
NewBindings.push_back(cast<
BindingDecl
>(VisitBindingDecl(OldBD)));
992
ArrayRef<
BindingDecl
*> NewBindingArray = NewBindings;
1010
ArrayRef<
BindingDecl
*> *Bindings) {
SemaDeclCXX.cpp
840
SmallVector<
BindingDecl
*, 8> Bindings;
859
auto *BD =
BindingDecl
::Create(Context, DC, B.NameLoc, B.Name);
907
Sema &S, ArrayRef<
BindingDecl
*> Bindings, ValueDecl *Src,
934
ArrayRef<
BindingDecl
*> Bindings,
948
static bool checkArrayDecomposition(Sema &S, ArrayRef<
BindingDecl
*> Bindings,
956
static bool checkVectorDecomposition(Sema &S, ArrayRef<
BindingDecl
*> Bindings,
966
ArrayRef<
BindingDecl
*> Bindings,
1148
InitializingBinding(Sema &S,
BindingDecl
*BD) : S(S) {
1162
ArrayRef<
BindingDecl
*> Bindings,
1371
static bool checkMemberDecomposition(Sema &S, ArrayRef<
BindingDecl
*> Bindings
[
all
...]
SemaDecl.cpp
6850
bool &AddToScope, ArrayRef<
BindingDecl
*> Bindings) {
7534
else if (isa<
BindingDecl
>(ShadowedDecl))
7575
return isa<VarDecl, FieldDecl,
BindingDecl
>(ShadowedDecl) ? ShadowedDecl
7596
NamedDecl *Sema::getShadowedDeclaration(const
BindingDecl
*D,
7602
return isa<VarDecl, FieldDecl,
BindingDecl
>(ShadowedDecl) ? ShadowedDecl
SemaTemplateInstantiate.cpp
773
<< cast<
BindingDecl
>(Active->Entity);
SemaExpr.cpp
242
if (isa<
BindingDecl
>(D)) {
2062
if (auto *BD = dyn_cast<
BindingDecl
>(D))
3352
auto *BD = cast<
BindingDecl
>(VD);
13612
!isa<
BindingDecl
>(dcl) && !isa<MSGuidDecl>(dcl))
17210
unsigned ValueKind = isa<
BindingDecl
>(var) ? 1 : 0;
/src/external/apache2/llvm/dist/clang/lib/ASTMatchers/
ASTMatchFinder.cpp
1220
} else if (isa<
BindingDecl
>(DeclNode)) {
ASTMatchersInternal.cpp
736
const internal::VariadicDynCastAllOfMatcher<Decl,
BindingDecl
>
bindingDecl
;
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
ExprEngine.cpp
2599
if (isa<
BindingDecl
>(D)) {
Completed in 148 milliseconds
1
2
Indexes created Sun Sep 20 00:26:38 UTC 2026