Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DCheckExprLifetime.cpp185 struct IndirectLocalPathEntry { struct
203 IndirectLocalPathEntry() {} in IndirectLocalPathEntry() function
204 IndirectLocalPathEntry(EntryKind K, Expr *E) : Kind(K), E(E) {} in IndirectLocalPathEntry() function
205 IndirectLocalPathEntry(EntryKind K, Expr *E, const Decl *D) in IndirectLocalPathEntry() function
207 IndirectLocalPathEntry(EntryKind K, Expr *E, const LambdaCapture *Capture) in IndirectLocalPathEntry() function
211 using IndirectLocalPath = llvm::SmallVectorImpl<IndirectLocalPathEntry>;
226 if (E.Kind == IndirectLocalPathEntry::VarInit && E.D == VD) in isVarOnPath()
232 return llvm::any_of(Path, [=](IndirectLocalPathEntry E) { in pathContainsInit()
233 return E.Kind == IndirectLocalPathEntry::DefaultInit || in pathContainsInit()
234 E.Kind == IndirectLocalPathEntry::VarInit; in pathContainsInit()
[all …]