Lines Matching refs:current
5 #define CURRENT_FROM_MACRO() SL::current()
16 …static constexpr source_location current(const __impl *__p = __builtin_source_location()) noexcept… in current() function in std::source_location
94 static_assert(SL::current().line() == __LINE__);
95 static_assert(SL::current().line() == CURRENT_FROM_MACRO().line());
97 static constexpr SL GlobalS = SL::current();
103 constexpr SL S = SL::current(); in test_line_fn()
111 current in test_line_fn()
168 SL info = SL::current();
180 U info = U::current();
183 constexpr InMemInitTemplate(T, T) : info(U::current()) {} in InMemInitTemplate()
184 template <class V = U> constexpr InMemInitTemplate(T, T, T, V info = U::current()) in InMemInitTemplate()
211 U info = U::current();
215 constexpr U test_fn_template(T, U u = U::current()) { in test_fn_template()
224 constexpr U get(T, U u = U::current(), U2 u2 = identity(U2::current())) const { in get()
360 constexpr Pair<U, U> test_func_template(T, U u = U::current()) { in test_func_template()
361 static_assert(is_equal(__PRETTY_FUNCTION__, U::current().function())); in test_func_template()
362 return {u, U::current()}; in test_func_template()
374 T info = T::current();
378 constexpr TestCtor(int, U u = U::current()) : ctor_info(u) {} in TestCtor()
390 constexpr SL global_sl = SL::current();
403 constexpr SL S = SL::current(); in test_column_fn()
413 current in test_column_fn()
433 static_assert(SL::current().column() == __builtin_strlen("static_assert(S"));
478 static_assert(SL::current().line() == StartLine + 2);
482 static_assert(is_equal("test_file.c", SL::current().file()));
500 SL info = SL::current();
576 constexpr Init(SL info = SL::current()) : info(info) {} in Init()