Home
last modified time | relevance | path

Searched refs:Referenced (Results 1 – 15 of 15) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/
H A DASTOps.cpp197 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 DDataflowEnvironment.cpp568 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 DCOFFObject.cpp55 Sym.Referenced = false; in markSymbols()
62 It->second->Referenced = true; in markSymbols()
H A DCOFFObjcopy.cpp200 // 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 DCOFFObject.h92 bool Referenced; member
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDeclBase.h315 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 DMachOObject.h106 bool Referenced = false; member
H A DMachOObjcopy.cpp90 (*ISE.Symbol)->Referenced = true; in markSymbols()
112 if (N->Referenced) in updateAndRemoveSymbols()
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/FlowSensitive/
H A DDataflowEnvironment.h737 void initFieldsGlobalsAndFuncs(const ReferencedDecls &Referenced);
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/ELF/
H A DELFObjcopy.cpp299 return !Sym.Referenced && in isUnneededSymbol()
406 if (!Config.OnlySection.empty() && !Sym.Referenced && in updateAndRemoveSymbols()
H A DELFObject.h769 bool Referenced = false; member
H A DELFObject.cpp1024 Reloc.RelocSymbol->Referenced = true; in markSymbols()
1119 Sym->Referenced = true; in markSymbols()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDeclBase.cpp578 if (Referenced) in isReferenced()
583 if (I->Referenced) in isReferenced()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaTemplate.cpp10495 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 DSemaDeclCXX.cpp4861 ValueDecl *Referenced = cast<MemberExpr>(MemRef)->getMemberDecl(); in RefersToRValueRef() local
4862 return Referenced->getType()->isRValueReferenceType(); in RefersToRValueRef()