Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaInit.cpp7170 struct IndirectLocalPathEntry { struct
7187 IndirectLocalPathEntry() {} in IndirectLocalPathEntry() argument
7188 IndirectLocalPathEntry(EntryKind K, Expr *E) : Kind(K), E(E) {} in IndirectLocalPathEntry() argument
7189 IndirectLocalPathEntry(EntryKind K, Expr *E, const Decl *D) in IndirectLocalPathEntry() function
7191 IndirectLocalPathEntry(EntryKind K, Expr *E, const LambdaCapture *Capture) in IndirectLocalPathEntry() function
7195 using IndirectLocalPath = llvm::SmallVectorImpl<IndirectLocalPathEntry>;
7210 if (E.Kind == IndirectLocalPathEntry::VarInit && E.D == VD) in isVarOnPath()
7216 return llvm::any_of(Path, [=](IndirectLocalPathEntry E) { in pathContainsInit()
7217 return E.Kind == IndirectLocalPathEntry::DefaultInit || in pathContainsInit()
7218 E.Kind == IndirectLocalPathEntry::VarInit; in pathContainsInit()
[all …]