Searched refs:BadType (Results 1 – 11 of 11) sorted by relevance
11 class BadType {13 BadType() {} in BadType() function19 struct ParamTraits<BadType> {20 static void Write(base::Pickle* m, const BadType& p) {}23 BadType* r) {26 static void Log(const BadType& p, std::string* l) {}37 IPC_MESSAGE_CONTROL1(TestMsg_BadMessage, BadType)
82 void OnBadMessage(const BadType& bad_type) { in OnBadMessage()117 channel_->Send(new TestMsg_BadMessage(BadType())); in OnSendBadMessage()209 void OnBadMessage(const BadType& bad_type) { in OnBadMessage()
136 template <> struct TempID<BadType> // expected-error{{use of undeclared identifier 'BadType'}}137 : BadType, // expected-error {{expected class name}}
136 template <> struct TempID<BadType> : BadType, EnumID::Garbage; // expected-error{{use of undeclared…
1 typedef WithoutDep BadType; typedef
547 using BadType = BadConstructors<int>; in TEST() typedef549 EXPECT_FALSE(absl::is_trivially_default_constructible<BadType>::value); in TEST()550 EXPECT_FALSE(absl::is_trivially_move_constructible<BadType>::value); in TEST()551 EXPECT_FALSE(absl::is_trivially_copy_constructible<BadType>::value); in TEST()