Lines Matching defs:first
21 std::string panda::pandasm::Ins::RegsToString(bool &first, bool print_args, size_t first_arg_idx) const
25 if (!first) {
28 first = false;
40 std::string panda::pandasm::Ins::ImmsToString(bool &first) const
44 if (!first) {
47 first = false;
61 std::string panda::pandasm::Ins::IdsToString(bool &first) const
65 if (!first) {
68 first = false;
78 bool first = true;
81 ss << this->RegsToString(first, print_args, first_arg_idx) << this->ImmsToString(first) << this->IdsToString(first);