Lines Matching refs:arg_
129 scan_arg arg_; member
174 arg_ = args_.data[id]; in on_arg_id()
180 switch (arg_.type) { in on_replacement_field()
182 *arg_.int_value = read_int(); in on_replacement_field()
185 *arg_.uint_value = read_uint(); in on_replacement_field()
188 *arg_.long_long_value = read_int<long long>(); in on_replacement_field()
191 *arg_.ulong_long_value = read_uint<unsigned long long>(); in on_replacement_field()
194 while (it != end && *it != ' ') arg_.string->push_back(*it++); in on_replacement_field()
200 *arg_.string_view = fmt::string_view(s, it - s); in on_replacement_field()
211 if (arg_.type != scan_type::custom_type) return begin; in on_format_specs()
213 arg_.custom.scan(arg_.custom.value, parse_ctx_, scan_ctx_); in on_format_specs()