Searched refs:IndirectLocalPathEntry (Results 1 – 1 of 1) sorted by relevance
194 struct IndirectLocalPathEntry { struct215 IndirectLocalPathEntry() {} in IndirectLocalPathEntry() function216 IndirectLocalPathEntry(EntryKind K, Expr *E) : Kind(K), E(E) {} in IndirectLocalPathEntry() function217 IndirectLocalPathEntry(EntryKind K, Expr *E, const Decl *D) in IndirectLocalPathEntry() argument219 IndirectLocalPathEntry(EntryKind K, Expr *E, const LambdaCapture *Capture) in IndirectLocalPathEntry() argument223 using IndirectLocalPath = llvm::SmallVectorImpl<IndirectLocalPathEntry>;238 if (E.Kind == IndirectLocalPathEntry::VarInit && E.D == VD) in isVarOnPath()244 return llvm::any_of(Path, [=](IndirectLocalPathEntry E) { in pathContainsInit()245 return E.Kind == IndirectLocalPathEntry::DefaultInit || in pathContainsInit()246 E.Kind == IndirectLocalPathEntry::VarInit; in pathContainsInit()[all …]