Home
last modified time | relevance | path

Searched defs:static_query (Results 1 – 7 of 7) sorted by relevance

/aosp_15_r20/external/sdv/vsomeip/third_party/boost/asio/test/properties/cpp03/
Dcan_query_not_applicable_static.cpp27 struct static_query<object, prop> struct
29 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()
Dcan_query_static.cpp34 struct static_query<object, prop> struct
36 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()
Dquery_static.cpp34 struct static_query<object, prop> struct
36 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()
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/asio/test/properties/cpp11/
Dcan_query_not_applicable_static.cpp27 struct static_query<object, prop> struct
29 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()
Dcan_query_static.cpp34 struct static_query<object, prop> struct
36 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()
Dquery_static.cpp34 struct static_query<object, prop> struct
36 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()
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/asio/include/boost/asio/traits/
Dstatic_query.hpp100 struct static_query : static_query_default<T, Property> struct