OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getFoundDecl
(Results
1 - 25
of
37
) sorted by relevancy
1
2
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/WebKit/
ASTUtils.cpp
85
if (auto *D = dyn_cast_or_null<VarDecl>(Ref->
getFoundDecl
())) {
UncountedLocalVarsChecker.cpp
189
dyn_cast_or_null<VarDecl>(Ref->
getFoundDecl
())) {
/src/external/apache2/llvm/dist/clang/include/clang/Tooling/Refactoring/
RecursiveSymbolVisitor.h
65
return visit(Expr->
getFoundDecl
(), Expr->getLocation());
69
return visit(Expr->
getFoundDecl
().getDecl(), Expr->getMemberLoc());
/src/external/apache2/llvm/dist/clang/include/clang/AST/
ASTConcept.h
150
NamedDecl *
getFoundDecl
() const {
Expr.h
1322
NamedDecl *
getFoundDecl
() {
1328
const NamedDecl *
getFoundDecl
() const {
3175
DeclAccessPair
getFoundDecl
() const {
TypeLoc.h
2092
NamedDecl *
getFoundDecl
() const {
/src/external/apache2/llvm/dist/clang/include/clang/Sema/
TypoCorrection.h
146
NamedDecl *
getFoundDecl
() const {
152
auto *D =
getFoundDecl
();
Lookup.h
58
/// criteria.
getFoundDecl
() will return this declaration.
307
///
getFoundDecl
().
509
return dyn_cast<DeclClass>(
getFoundDecl
());
517
NamedDecl *
getFoundDecl
() const {
519
&& "
getFoundDecl
called on non-unique result");
531
return getResultKind() == Found && isa<TagDecl>(
getFoundDecl
());
/src/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/Rename/
USRLocFinder.cpp
216
const NamedDecl *Decl = Expr->
getFoundDecl
();
269
const NamedDecl *Decl = Expr->
getFoundDecl
();
/src/external/apache2/llvm/dist/clang/lib/Sema/
ScopeInfo.cpp
237
Callback(cast<VarDecl>(DRE->
getFoundDecl
()), E);
SemaStmtAsm.cpp
821
FoundDecl = BaseResult.
getFoundDecl
();
857
FoundDecl = FieldResult.
getFoundDecl
();
900
ValueDecl *FD = dyn_cast<FieldDecl>(FieldResult.
getFoundDecl
());
902
FD = dyn_cast<IndirectFieldDecl>(FieldResult.
getFoundDecl
());
SemaCXXScopeSpec.cpp
376
NamedDecl *Result = Found.
getFoundDecl
();
643
if (NamedDecl *ND = Corrected.
getFoundDecl
())
SemaTemplate.cpp
518
if (auto *ND = Corrected.
getFoundDecl
())
586
getAsTemplateNameDecl(FoundOuter.
getFoundDecl
()))) {
596
getAsTemplateNameDecl(Found.
getFoundDecl
())->getCanonicalDecl() !=
605
Diag(FoundOuter.
getFoundDecl
()->getLocation(),
636
Found = DRE->
getFoundDecl
();
689
auto *ND = Corrected.
getFoundDecl
();
3892
if (Corrected && Corrected.
getFoundDecl
()) {
4753
R.
getFoundDecl
(),
9224
(PrevVar = dyn_cast<VarDecl>(Previous.
getFoundDecl
())))
9234
(PrevRecord = dyn_cast<CXXRecordDecl>(Previous.
getFoundDecl
()))) {
[
all
...]
SemaDecl.cpp
462
IIDecl = Result.
getFoundDecl
();
959
NamedDecl *FirstDecl = Corrected.
getFoundDecl
();
1459
(Previous.
getFoundDecl
()->hasAttr<OverloadableAttr>() ||
4047
OldTemplate = dyn_cast<VarTemplateDecl>(Previous.
getFoundDecl
());
4055
Old = dyn_cast<VarDecl>(Previous.
getFoundDecl
());
5861
Previous.
getFoundDecl
()->isTemplateParameter()) {
5865
Previous.
getFoundDecl
());
7396
isDeclInScope(Previous.
getFoundDecl
(), OriginalDC, S, false));
7409
isa<FieldDecl>(Previous.
getFoundDecl
()) &&
7574
NamedDecl *ShadowedDecl = R.
getFoundDecl
();
[
all
...]
SemaTemplateVariadic.cpp
1017
ParameterPack = R.
getFoundDecl
();
SemaExprObjC.cpp
2113
Corrected.isKeyword() ? nullptr : Corrected.
getFoundDecl
();
2336
NamedDecl *ND = Result.
getFoundDecl
();
4023
Target = R.
getFoundDecl
();
4089
Target = R.
getFoundDecl
();
4257
Target = R.
getFoundDecl
();
SemaExpr.cpp
2279
NamedDecl *ND = Corrected.
getFoundDecl
();
2639
MightBeImplicitMember = isa<FieldDecl>(R.
getFoundDecl
()) ||
2640
isa<IndirectFieldDecl>(R.
getFoundDecl
()) ||
2641
isa<MSPropertyDecl>(R.
getFoundDecl
());
2783
Lookup.
getFoundDecl
()->isDefinedOutsideFunctionOrMethod());
2816
Lookup.
getFoundDecl
()->isDefinedOutsideFunctionOrMethod()) {
2819
dyn_cast<ObjCIvarDecl>(Lookup.
getFoundDecl
())) {
3147
const auto *FD = dyn_cast<FunctionDecl>(R.
getFoundDecl
());
3160
return BuildDeclarationNameExpr(SS, R.getLookupNameInfo(), R.
getFoundDecl
(),
3168
CheckDeclInExpr(*this, R.getNameLoc(), R.
getFoundDecl
()))
[
all
...]
SemaLookup.cpp
4668
Res.
getFoundDecl
()->isDefinedOutsideFunctionOrMethod()))) {
5459
NamedDecl *Decl = Correction.
getFoundDecl
();
5471
Correction.isKeyword() ? nullptr : Correction.
getFoundDecl
();
SemaCoroutine.cpp
1237
S.Diag(Found.
getFoundDecl
()->getLocation(), diag::note_member_declared_here)
SemaExprCXX.cpp
8006
if (auto *ND = TC.
getFoundDecl
()) {
8140
return DRE->
getFoundDecl
();
8142
return ME->
getFoundDecl
();
8355
if (InitDecl && TC.
getFoundDecl
() == InitDecl)
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
MacOSKeychainAPIChecker.cpp
364
StringRef DeallocatorName = DE->
getFoundDecl
()->getName();
374
if (DE->
getFoundDecl
()->getName() == "kCFAllocatorNull")
/src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTWriterStmt.cpp
439
Record.AddDeclRef(E->
getFoundDecl
());
599
Record.push_back(E->getDecl() != E->
getFoundDecl
());
613
(E->getDecl() == E->
getFoundDecl
()) &&
622
if (E->getDecl() != E->
getFoundDecl
())
623
Record.AddDeclRef(E->
getFoundDecl
());
884
(E->
getFoundDecl
().getDecl() != E->getMemberDecl() ||
885
E->
getFoundDecl
().getAccess() != E->getMemberDecl()->getAccess());
907
DeclAccessPair FoundDecl = E->
getFoundDecl
();
/src/external/apache2/llvm/dist/clang/lib/AST/
TextNodeDumper.cpp
982
if (Node->getDecl() != Node->
getFoundDecl
()) {
984
dumpBareDeclRef(Node->
getFoundDecl
());
1360
dumpBareDeclRef(Node->
getFoundDecl
());
2017
if (TC->getNamedConcept() != TC->
getFoundDecl
()) {
2019
dumpBareDeclRef(TC->
getFoundDecl
());
JSONNodeDumper.cpp
1156
if (DRE->getDecl() != DRE->
getFoundDecl
())
1158
createBareDeclRef(DRE->
getFoundDecl
()));
ASTStructuralEquivalence.cpp
265
return IsStructurallyEquivalent(Context, E1->
getFoundDecl
(),
266
E2->
getFoundDecl
());
Completed in 136 milliseconds
1
2
Indexes created Tue Jun 16 00:25:01 UTC 2026