Home | History | Annotate | Download | only in brillo

Lines Matching refs:GetTypeTag

27 const char* GetTypeTag() {
33 // instance of brillo::internal_details::GetTypeTag<T>() will have a different
39 // Explicitly instantiate GetTypeTag<T>() for common types to minimize static
41 extern template BRILLO_EXPORT const char* GetTypeTag<int8_t>();
42 extern template BRILLO_EXPORT const char* GetTypeTag<uint8_t>();
43 extern template BRILLO_EXPORT const char* GetTypeTag<int16_t>();
44 extern template BRILLO_EXPORT const char* GetTypeTag<uint16_t>();
45 extern template BRILLO_EXPORT const char* GetTypeTag<int32_t>();
46 extern template BRILLO_EXPORT const char* GetTypeTag<uint32_t>();
47 extern template BRILLO_EXPORT const char* GetTypeTag<int64_t>();
48 extern template BRILLO_EXPORT const char* GetTypeTag<uint64_t>();
49 extern template BRILLO_EXPORT const char* GetTypeTag<bool>();
50 extern template BRILLO_EXPORT const char* GetTypeTag<double>();
51 extern template BRILLO_EXPORT const char* GetTypeTag<std::string>();
64 return GetUndecoratedTypeNameForTag(GetTypeTag<T>());