Lines Matching defs:arg1
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)
60 Message::Message(uint32_t what, int32_t arg1, void* voidPtr) : what_(what), arg1_(arg1), voidPtr_(voidPtr)