Home
last modified time | relevance | path

Searched defs:UnwrapperHelper (Results 1 – 2 of 2) sorted by relevance

/llvm-project/flang/include/flang/Parser/
H A Dtools.h49 struct UnwrapperHelper { struct
51 template <typename A, typename B> static const A *Unwrap(B *p) { in Unwrap()
60 static const A *Unwrap(const common::Indirection<B, COPY> &x) { in Unwrap()
65 static const A *Unwrap(const std::variant<Bs...> &x) { in Unwrap()
70 static const A *Unwrap(const std::tuple<Bs...> &x) { in Unwrap()
82 static const A *Unwrap(const std::optional<B> &o) { in Unwrap()
91 static const A *Unwrap(const UnlabeledStatement<B> &x) { in Unwrap()
115 return UnwrapperHelper::Unwrap<A>(x); in Unwrap() argument
/llvm-project/flang/include/flang/Common/
H A Dunwrap.h47 struct UnwrapperHelper { struct
106 static A *Unwrap(std::variant<Bs...> &u) { in Unwrap()