Lines Matching refs:current
16 static constexpr source_location current(const void *__p = __builtin_source_location()) noexcept { in current() function in std::source_location
22 return current(__p); in bad_current()
55 SL const_init_global = SL::current();
84 SL local = SL::current(); in test_function()
89 SL info = SL::current();
93 TestInit(SL arg_info = SL::current()) : arg_info(arg_info) {} in TestInit()
133 SL info = SL::current();
136 constexpr TestInitConstexpr(SL arg_info = SL::current()) : arg_info(arg_info) {} in TestInitConstexpr()
175 SL i2 = SL::current();
224 {SL::current()} in test_agg_init()
232 Tp info = Tp::current();
235 constexpr TestTemplate(Tp arg_info = Tp::current()) : arg_info(arg_info) {} in TestTemplate()