Lines Matching defs:what
24 Message::Message(uint32_t what) : what_(what), arg1_(0), arg2_(0)
28 Message::Message(uint32_t what, int32_t arg1) : what_(what), arg1_(arg1)
32 Message::Message(uint32_t what, int32_t arg1, int32_t arg2, float arg3)
33 : what_(what), arg1_(arg1), arg2_(arg2), arg3_(arg3)
37 Message::Message(uint32_t what, int32_t arg1, int32_t arg2, const std::string &obj)
38 : what_(what), arg1_(arg1), arg2_(arg2), obj_(obj)
42 Message::Message(uint32_t what, int32_t arg1, int32_t arg2, float arg3, const std::string &obj)
43 : what_(what), arg1_(arg1), arg2_(arg2), arg3_(arg3), obj_(obj)
47 Message::Message(uint32_t what, std::shared_ptr<void> obj2) : what_(what), obj2_(obj2)
51 Message::Message(uint32_t what, std::shared_ptr<void> obj2, std::shared_ptr<void> obj3)
52 : what_(what), obj2_(obj2), obj3_(obj3)
56 Message::Message(uint32_t what, void* voidPtr) : what_(what), voidPtr_(voidPtr)
60 Message::Message(uint32_t what, int32_t arg1, void* voidPtr) : what_(what), arg1_(arg1), voidPtr_(voidPtr)