Searched refs:TypeName (Results 1 – 1 of 1) sorted by relevance
280 #define DISALLOW_DEFAULT_CONSTRUCTOR(TypeName) \ argument281 TypeName() = delete283 #define DISALLOW_COPY_CONSTRUCTOR(TypeName) \ argument284 TypeName(const TypeName&) = delete286 #define DISALLOW_ASSIGNMENT_OPERATOR(TypeName) \ argument287 void operator=(const TypeName&) = delete289 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \ argument290 DISALLOW_COPY_CONSTRUCTOR(TypeName); \291 DISALLOW_ASSIGNMENT_OPERATOR(TypeName)293 #define DISALLOW_IMPLICIT_CONSTRUCTORS(TypeName) \ argument[all …]