Searched defs:static_query (Results 1 – 7 of 7) sorted by relevance
27 struct static_query<object, prop> struct29 static const bool is_valid = true;30 static const bool is_noexcept = true;31 typedef int result_type;32 static int value() { return 123; } in value()
34 struct static_query<object, prop> struct36 static const bool is_valid = true;37 static const bool is_noexcept = true;38 typedef int result_type;39 static int value() { return 123; } in value()
27 struct static_query<object, prop> struct29 static constexpr bool is_valid = true;30 static constexpr bool is_noexcept = true;31 typedef int result_type;32 static constexpr int value() { return 123; } in value()
34 struct static_query<object, prop> struct36 static constexpr bool is_valid = true;37 static constexpr bool is_noexcept = true;38 typedef int result_type;39 static constexpr int value() { return 123; } in value()
100 struct static_query : static_query_default<T, Property> struct