/third_party/python/Lib/multiprocessing/ |
H A D | managers.py | 66 __slots__ = ('typeid', 'address', 'id') 68 def __init__(self, typeid, address, id): 69 (self.typeid, self.address, self.id) = (typeid, address, id) 72 return (self.typeid, self.address, self.id) 75 (self.typeid, self.address, self.id) = state 78 return '%s(typeid=%r, address=%r, id=%r)' % \ 79 (self.__class__.__name__, self.typeid, self.address, self.id) 277 typeid = gettypeid and gettypeid.get(methodname, None) 278 if typeid [all...] |
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | unifiedcache.h | 16 #include "utypeinfo.h" // for 'typeid' to work 109 const char *s = typeid(T).name(); in hashCode() 117 const char *s = typeid(T).name(); in writeDescription() 127 return typeid(*this) == typeid(other); in operator ==()
|
/third_party/node/deps/v8/src/zone/ |
H A D | type-stats.h | 28 StatsEntry& entry = map_[std::type_index(typeid(TypeTag))]; in AddAllocated() 41 StatsEntry& entry = map_[std::type_index(typeid(TypeTag))]; in AddDeallocated()
|
/third_party/icu/icu4c/source/common/ |
H A D | unifiedcache.h | 16 #include "utypeinfo.h" // for 'typeid' to work 111 const char *s = typeid(T).name(); 119 const char *s = typeid(T).name(); 130 return this == &other || typeid(*this) == typeid(other);
|
/third_party/node/deps/icu-small/source/common/ |
H A D | unifiedcache.h | 16 #include "utypeinfo.h" // for 'typeid' to work 111 const char *s = typeid(T).name(); 119 const char *s = typeid(T).name(); 130 return this == &other || typeid(*this) == typeid(other);
|
/third_party/skia/third_party/externals/abseil-cpp/absl/types/internal/ |
H A D | conformance_testing_helpers.h | 62 abi::__cxa_demangle(typeid(T).name(), nullptr, nullptr, &status); in NameOfImpl() 67 return typeid(T).name(); in NameOfImpl() 70 return typeid(T).name(); in NameOfImpl()
|
/third_party/googletest/googletest/include/gtest/internal/ |
H A D | gtest-type-util.h | 79 // gcc's implementation of typeid(T).name() mangles the type name, in GetTypeName() 101 return GetTypeName(typeid(T)); in GetTypeName()
|
H A D | gtest-port.h | 526 // both the typeid and dynamic_cast features are present. 1140 GTEST_CHECK_(typeid(*base) == typeid(Derived)); in CheckedDowncastToActualType()
|
H A D | gtest-internal.h | 1387 #define GTEST_EXCEPTION_TYPE_(e) ::testing::internal::GetTypeName(typeid(e))
|
/third_party/node/deps/googletest/include/gtest/internal/ |
H A D | gtest-type-util.h | 95 // gcc's implementation of typeid(T).name() mangles the type name, in GetTypeName() 131 return GetTypeName(typeid(T)); in GetTypeName()
|
H A D | gtest-internal.h | 1374 #define GTEST_EXCEPTION_TYPE_(e) ::testing::internal::GetTypeName(typeid(e))
|
/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/port/ |
H A D | refcount.h | 89 typeid(this).name(), object_counter_, object_id_, ref_count_)
|
/third_party/skia/third_party/externals/abseil-cpp/absl/types/ |
H A D | any.h | 352 // Returns: typeid(T) if *this has a contained object of type T, otherwise 353 // typeid(void). 359 return typeid(void); 390 const std::type_info& Type() const noexcept final { return typeid(T); } 403 // Note: This type dance is to make the behavior consistent with typeid.
|
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/ |
H A D | layout.h | 300 demangled = abi::__cxa_demangle(typeid(T).name(), nullptr, nullptr, &status); in TypeName() 307 absl::StrAppend(&out, "<", typeid(T).name(), ">"); in TypeName()
|
/third_party/mesa3d/src/gtest/include/gtest/internal/ |
H A D | gtest-port.h | 505 // both the typeid and dynamic_cast features are present. 1101 GTEST_CHECK_(typeid(*base) == typeid(Derived)); in CheckedDowncastToActualType()
|
H A D | gtest-type-util.h | 83 const char* const name = typeid(T).name(); in GetTypeName() 86 // gcc's implementation of typeid(T).name() mangles the type name, in GetTypeName()
|
/third_party/nghttp2/src/ |
H A D | template.h | 524 fprintf(stderr, "Caught %s:\n%s\n", typeid(x).name(), x.what());
|
/third_party/protobuf/src/google/protobuf/ |
H A D | arena.h | 177 // match program's lifetime (It is given by typeid operator). 178 // Note: typeid(void) will be passed as allocated_type every time we 197 #define RTTI_TYPE_ID(type) (&typeid(type))
|
/third_party/skia/third_party/externals/abseil-cpp/absl/flags/internal/ |
H A D | flag.h | 163 // Returns an address of RTTI's typeid(T). 167 return &typeid(T); in GenRuntimeTypeId()
|
/third_party/googletest/googlemock/include/gmock/ |
H A D | gmock-matchers.h | 5361 *listener << "throws an exception of type " << GetTypeName(typeid(err)); in MatchAndExplain()
|