Searched refs:IsTypeSupported (Results 1 – 4 of 4) sorted by relevance
/external/libbrillo/brillo/dbus/ |
D | data_serialization_test.cc | 26 EXPECT_TRUE(IsTypeSupported<bool>::value); in TEST() 27 EXPECT_TRUE(IsTypeSupported<uint8_t>::value); in TEST() 28 EXPECT_TRUE(IsTypeSupported<int16_t>::value); in TEST() 29 EXPECT_TRUE(IsTypeSupported<uint16_t>::value); in TEST() 30 EXPECT_TRUE(IsTypeSupported<int32_t>::value); in TEST() 31 EXPECT_TRUE(IsTypeSupported<uint32_t>::value); in TEST() 32 EXPECT_TRUE(IsTypeSupported<int64_t>::value); in TEST() 33 EXPECT_TRUE(IsTypeSupported<uint64_t>::value); in TEST() 34 EXPECT_TRUE(IsTypeSupported<double>::value); in TEST() 35 EXPECT_TRUE(IsTypeSupported<std::string>::value); in TEST() [all …]
|
D | data_serialization.h | 101 struct IsTypeSupported; 106 struct IsTypeSupported<T, Types...> 109 IsTypeSupported<T>::value && IsTypeSupported<Types...>::value> {}; 114 struct IsTypeSupported<T> 121 struct IsTypeSupported<> : public std::false_type {}; 145 inline typename std::enable_if<IsTypeSupported<T>::value, std::string>::type 468 typename std::enable_if<IsTypeSupported<T>::value>::type AppendValueToWriter( 482 typename std::enable_if<IsTypeSupported<T>::value, bool>::type 531 : public details::DBusArrayType<IsTypeSupported<T>::value, T, ALLOC> {}; 566 typename std::enable_if<IsTypeSupported<U, V>::value>::type AppendValueToWriter( [all …]
|
/external/libbrillo/brillo/ |
D | any_internal_impl.h | 184 static typename std::enable_if<dbus_utils::IsTypeSupported<U>::value>::type 189 static typename std::enable_if<!dbus_utils::IsTypeSupported<U>::value>::type
|
/external/pdfium/third_party/lcms/src/ |
D | cmsio0.c | 1509 cmsBool IsTypeSupported(cmsTagDescriptor* TagDescriptor, cmsTagTypeSignature Type) in IsTypeSupported() function 1556 if (!IsTypeSupported(TagDescriptor, BaseType)) goto Error; in cmsReadTag() 1591 if (!IsTypeSupported(TagDescriptor, BaseType)) goto Error; in cmsReadTag() 1727 if (!IsTypeSupported(TagDescriptor, Type)) { in cmsWriteTag()
|