Searched refs:Referenced (Results 1 – 15 of 15) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/ |
H A D | ASTOps.cpp | 197 ReferencedDeclsVisitor(ReferencedDecls &Referenced) in ReferencedDeclsVisitor() argument 198 : Referenced(Referenced) {} in ReferencedDeclsVisitor() 203 Referenced.Fields.insert(Init->getMember()); in TraverseConstructorInits() 206 Referenced.Fields.insert(cast<FieldDecl>(I)); in TraverseConstructorInits() 222 insertIfGlobal(*D, Referenced.Globals); in VisitDecl() 223 insertIfFunction(*D, Referenced.Functions); in VisitDecl() 228 insertIfGlobal(*E->getDecl(), Referenced.Globals); in VisitDeclRefExpr() 229 insertIfFunction(*E->getDecl(), Referenced.Functions); in VisitDeclRefExpr() 238 Referenced.Fields.insert(FD); in VisitCXXMemberCallExpr() 245 insertIfGlobal(*VD, Referenced.Globals); in VisitMemberExpr() [all …]
|
H A D | DataflowEnvironment.cpp | 568 void Environment::initFieldsGlobalsAndFuncs(const ReferencedDecls &Referenced) { in initFieldsGlobalsAndFuncs() argument 571 DACtx->addModeledFields(Referenced.Fields); in initFieldsGlobalsAndFuncs() 573 for (const VarDecl *D : Referenced.Globals) { in initFieldsGlobalsAndFuncs() 585 for (const FunctionDecl *FD : Referenced.Functions) { in initFieldsGlobalsAndFuncs()
|
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/COFF/ |
H A D | COFFObject.cpp | 55 Sym.Referenced = false; in markSymbols() 62 It->second->Referenced = true; in markSymbols()
|
H A D | COFFObjcopy.cpp | 200 // If we need to do per-symbol removals, initialize the Referenced field. in handleArgs() 220 if (Sym.Referenced) in handleArgs() 228 if (!Sym.Referenced) { in handleArgs()
|
H A D | COFFObject.h | 92 bool Referenced; member
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | DeclBase.h | 315 unsigned Referenced : 1; 398 Implicit(false), Used(false), Referenced(false), in Decl() 407 Used(false), Referenced(false), TopLevelDeclInObjCContainer(false), in Decl() 627 bool isThisDeclarationReferenced() const { return Referenced; } in isThisDeclarationReferenced() 629 void setReferenced(bool R = true) { Referenced = R; }
|
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/MachO/ |
H A D | MachOObject.h | 106 bool Referenced = false; member
|
H A D | MachOObjcopy.cpp | 90 (*ISE.Symbol)->Referenced = true; in markSymbols() 112 if (N->Referenced) in updateAndRemoveSymbols()
|
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/FlowSensitive/ |
H A D | DataflowEnvironment.h | 737 void initFieldsGlobalsAndFuncs(const ReferencedDecls &Referenced);
|
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/ELF/ |
H A D | ELFObjcopy.cpp | 299 return !Sym.Referenced && in isUnneededSymbol() 406 if (!Config.OnlySection.empty() && !Sym.Referenced && in updateAndRemoveSymbols()
|
H A D | ELFObject.h | 769 bool Referenced = false; member
|
H A D | ELFObject.cpp | 1024 Reloc.RelocSymbol->Referenced = true; in markSymbols() 1119 Sym->Referenced = true; in markSymbols()
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | DeclBase.cpp | 578 if (Referenced) in isReferenced() 583 if (I->Referenced) in isReferenced()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaTemplate.cpp | 10495 Decl *Referenced = nullptr; in CheckTypenameType() local 10613 Referenced = Result.getFoundDecl(); in CheckTypenameType() 10619 Referenced = *Result.begin(); in CheckTypenameType() 10634 if (Referenced) in CheckTypenameType() 10635 Diag(Referenced->getLocation(), in CheckTypenameType()
|
H A D | SemaDeclCXX.cpp | 4861 ValueDecl *Referenced = cast<MemberExpr>(MemRef)->getMemberDecl(); in RefersToRValueRef() local 4862 return Referenced->getType()->isRValueReferenceType(); in RefersToRValueRef()
|