Home
last modified time | relevance | path

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

/external/llvm-project/clang/lib/Sema/
DSemaInit.cpp6714 struct IndirectLocalPathEntry { struct
6731 IndirectLocalPathEntry() {} in IndirectLocalPathEntry() function
6732 IndirectLocalPathEntry(EntryKind K, Expr *E) : Kind(K), E(E) {} in IndirectLocalPathEntry() function
6733 IndirectLocalPathEntry(EntryKind K, Expr *E, const Decl *D) in IndirectLocalPathEntry() argument
6735 IndirectLocalPathEntry(EntryKind K, Expr *E, const LambdaCapture *Capture) in IndirectLocalPathEntry() argument
6739 using IndirectLocalPath = llvm::SmallVectorImpl<IndirectLocalPathEntry>;
6754 if (E.Kind == IndirectLocalPathEntry::VarInit && E.D == VD) in isVarOnPath()
6760 return llvm::any_of(Path, [=](IndirectLocalPathEntry E) { in pathContainsInit()
6761 return E.Kind == IndirectLocalPathEntry::DefaultInit || in pathContainsInit()
6762 E.Kind == IndirectLocalPathEntry::VarInit; in pathContainsInit()
[all …]