Searched refs:toPointer (Results 1 – 6 of 6) sorted by relevance
157 return toPointer(getStorage());160 const_pointer operator->() const { return toPointer(getStorage()); }223 pointer toPointer(pointer Val) { in toPointer() function227 const_pointer toPointer(const_pointer Val) const { return Val; } in toPointer() function229 pointer toPointer(wrap *Val) { in toPointer() function233 const_pointer toPointer(const wrap *Val) const { return &Val->get(); } in toPointer() function
618 return toPointer(getStorage());624 return toPointer(getStorage());673 pointer toPointer(pointer Val) { return Val; } in toPointer() function675 const_pointer toPointer(const_pointer Val) const { return Val; } in toPointer() function677 pointer toPointer(wrap *Val) { return &Val->get(); } in toPointer() function679 const_pointer toPointer(const wrap *Val) const { return &Val->get(); } in toPointer() function
280 return toPointer(getStorage());286 return toPointer(getStorage());333 pointer toPointer(pointer Val) { return Val; } in toPointer() function335 const_pointer toPointer(const_pointer Val) const { return Val; } in toPointer() function337 pointer toPointer(wrap *Val) { return &Val->get(); } in toPointer() function339 const_pointer toPointer(const wrap *Val) const { return &Val->get(); } in toPointer() function
18 std::optional<Pointer> MemberPointer::toPointer(const Context &Ctx) const { in toPointer() function in clang::interp::MemberPointer
50 std::optional<Pointer> toPointer(const Context &Ctx) const;
1813 if (std::optional<Pointer> Ptr = MP.toPointer(S.Ctx)) { in CastMemberPtrPtr()