Searched refs:IsSubset (Results 1 - 2 of 2) sorted by relevance

/frameworks/native/libs/vr/libpdx/
H A Dvariant_tests.cpp1082 EXPECT_TRUE((detail::Set<int, bool, float>::template IsSubset<int, bool,
1085 (detail::Set<int, bool, float>::template IsSubset<bool, float>::value));
1086 EXPECT_TRUE((detail::Set<int, bool, float>::template IsSubset<float>::value));
1087 EXPECT_TRUE((detail::Set<int, bool, float>::template IsSubset<>::value));
1090 (detail::Set<int, bool, float>::template IsSubset<int, bool, float,
1092 EXPECT_FALSE((detail::Set<int, bool, float>::template IsSubset<bool, float,
1095 (detail::Set<int, bool, float>::template IsSubset<float, char>::value));
1096 EXPECT_FALSE((detail::Set<int, bool, float>::template IsSubset<char>::value));
1098 EXPECT_TRUE(detail::Set<>::template IsSubset<>::value);
1099 EXPECT_FALSE(detail::Set<>::template IsSubset<in
[all...]
/frameworks/native/libs/vr/libpdx/private/pdx/rpc/
H A Dvariant.h53 struct IsSubset : std::true_type {}; struct in struct:android::pdx::rpc::detail::Set
55 struct IsSubset<T> : HasType<T, Types...> {}; struct in struct:android::pdx::rpc::detail::Set
57 struct IsSubset<First, Rest...> struct in struct:android::pdx::rpc::detail::Set
58 : std::integral_constant<bool, IsSubset<First>::value &&
59 IsSubset<Rest...>::value> {};
590 detail::Set<Types...>::template IsSubset<ValidTypes...>::value,
597 detail::Set<Types...>::template IsSubset<ValidTypes...>::value,

Completed in 68 milliseconds