Lines Matching refs:section
30 FormatSection section; in get_next_section() local
31 section.raw_string = str + cur_pos; in get_next_section()
35 section.has_conv = true; in get_next_section()
44 section.flags = parse_flags(&cur_pos); in get_next_section()
47 section.min_width = 0; in get_next_section()
51 section.min_width = GET_ARG_VAL_SIMPLEST(int, parse_index(&cur_pos)); in get_next_section()
54 section.min_width = in get_next_section()
58 if (section.min_width < 0) { in get_next_section()
59 section.min_width = -section.min_width; in get_next_section()
60 section.flags = in get_next_section()
61 static_cast<FormatFlags>(section.flags | FormatFlags::LEFT_JUSTIFIED); in get_next_section()
65 section.precision = -1; // negative precisions are ignored. in get_next_section()
68 section.precision = 0; // if there's a . but no specified precision, the in get_next_section()
73 section.precision = GET_ARG_VAL_SIMPLEST(int, parse_index(&cur_pos)); in get_next_section()
77 section.precision = in get_next_section()
85 section.length_modifier = lm; in get_next_section()
86 section.conv_name = str[cur_pos]; in get_next_section()
91 section.conv_val_raw = GET_ARG_VAL_SIMPLEST(int, conv_index); in get_next_section()
103 section.conv_val_raw = GET_ARG_VAL_SIMPLEST(int, conv_index); in get_next_section()
106 section.conv_val_raw = GET_ARG_VAL_SIMPLEST(long, conv_index); in get_next_section()
111 section.conv_val_raw = GET_ARG_VAL_SIMPLEST(long long, conv_index); in get_next_section()
114 section.conv_val_raw = GET_ARG_VAL_SIMPLEST(intmax_t, conv_index); in get_next_section()
117 section.conv_val_raw = GET_ARG_VAL_SIMPLEST(size_t, conv_index); in get_next_section()
120 section.conv_val_raw = GET_ARG_VAL_SIMPLEST(ptrdiff_t, conv_index); in get_next_section()
134 section.conv_val_raw = in get_next_section()
137 section.conv_val_raw = bit_cast<fputil::FPBits<long double>::UIntType>( in get_next_section()
146 section.conv_val_ptr = GET_ARG_VAL_SIMPLEST(void *, conv_index); in get_next_section()
150 section.has_conv = false; in get_next_section()
156 section.has_conv = false; in get_next_section()
160 section.raw_len = cur_pos - starting_pos; in get_next_section()
161 return section; in get_next_section()