HomeSort by relevance Sort by last modified time
    Searched refs:GetTypeTag (Results 1 - 10 of 10) sorted by null

  /external/libbrillo/brillo/
type_name_undecorate.h 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>()
    [all...]
any_internal_impl_unittest.cc 11 using brillo::GetTypeTag;
25 EXPECT_STREQ(GetTypeTag<int>(), buffer.GetDataPtr()->GetTypeTag());
33 EXPECT_STREQ(GetTypeTag<double>(), buffer.GetDataPtr()->GetTypeTag());
42 EXPECT_STREQ(GetTypeTag<std::nullptr_t>(),
43 buffer.GetDataPtr()->GetTypeTag());
49 EXPECT_STREQ(GetTypeTag<const char*>(), buffer.GetDataPtr()->GetTypeTag());
59 EXPECT_STREQ(GetTypeTag<NonTrivial*>(), buffer.GetDataPtr()->GetTypeTag())
    [all...]
type_name_undecorate.cc 41 // const char *brillo::GetTypeTag() [T = int]
54 // Implementations of the explicitly instantiated GetTypeTag<T>() for common
56 template const char* GetTypeTag<int8_t>();
57 template const char* GetTypeTag<uint8_t>();
58 template const char* GetTypeTag<int16_t>();
59 template const char* GetTypeTag<uint16_t>();
60 template const char* GetTypeTag<int32_t>();
61 template const char* GetTypeTag<uint32_t>();
62 template const char* GetTypeTag<int64_t>();
63 template const char* GetTypeTag<uint64_t>()
    [all...]
type_name_undecorate_unittest.cc 15 TEST(TypeTags, GetTypeTag) {
16 EXPECT_STREQ("const char *brillo::GetTypeTag() [T = int]", GetTypeTag<int>());
17 EXPECT_STREQ("const char *brillo::GetTypeTag() [T = std::__1::map<std::__1::"
24 GetTypeTag<VariantDictionary>());
25 EXPECT_STREQ("const char *brillo::GetTypeTag() [T = int []]",
26 GetTypeTag<int[]>());
32 EXPECT_EQ("char const* brillo::GetTypeTag<unsigned long long>()",
42 "const char *brillo::GetTypeTag() [T = int]"));
45 "const char *brillo::GetTypeTag() [T = int []]"))
    [all...]
any.h 87 if (strcmp(GetTypeTag<CanonicalDestType>(), contained_type) == 0)
100 if (strcmp(GetTypeTag<CanonicalDestTypeNoConst>(), contained_type) == 0)
105 if (strcmp(GetTypeTag<CanonicalDestTypeNoVolatile>(), contained_type) == 0)
110 return strcmp(GetTypeTag<CanonicalDestTypeNoConstOrVolatile>(),
any_internal_impl.h 147 virtual const char* GetTypeTag() const = 0;
169 const char* GetTypeTag() const override { return brillo::GetTypeTag<T>(); }
272 if (ptr && strcmp(ptr->GetTypeTag(), GetTypeTag<Type>()) == 0) {
any.cc 48 return data_buffer_.GetDataPtr()->GetTypeTag();
  /art/runtime/jdwp/
jdwp_event.cc     [all...]
  /art/runtime/
debugger.h 695 static JDWP::JdwpTypeTag GetTypeTag(ObjPtr<mirror::Class> klass)
    [all...]
debugger.cc     [all...]

Completed in 440 milliseconds