Searched refs:text_width (Results 1 - 5 of 5) sorted by relevance

/freebsd-12-stable/contrib/dialog/
H A Dchecklist.c200 int use_width, list_width, name_width, text_width; local
308 text_width = 0;
312 text_width = MAX(text_width, dlg_count_columns(items[i].text));
322 list_width = MIN(all.use_width, text_width);
326 if (text_width >= 0
329 && text_width + name_width > use_width) {
333 (text_width + name_width));
336 text_width = use_width - name_width;
338 list_width = (text_width
[all...]
H A Dmenubox.c346 int use_width, name_width, text_width, list_width; local
433 text_width = 0;
440 text_width = MAX(text_width, dlg_count_columns(items[i].text));
451 list_width = MIN(use_width, text_width);
455 if (text_width >= 0
458 && text_width + name_width > use_width) {
463 / (text_width + name_width));
466 text_width = use_width - name_width;
468 list_width = (text_width
[all...]
H A Dbuildlist.c464 int name_width, text_width, full_width, list_width; local
571 text_width = 0;
575 text_width = MAX(text_width, dlg_count_columns(items[i].text));
585 full_width = MIN(all.use_width, text_width);
589 if (text_width >= 0
592 && text_width + name_width > all.use_width) {
596 (text_width + name_width));
599 text_width = all.use_width - name_width;
601 full_width = text_width
[all...]
H A Dtreeview.c205 int use_width, name_width, text_width, tree_width; local
308 text_width = 0;
314 text_width = MAX(text_width, dlg_count_columns(items[i].text));
318 tree_width += text_width;
322 tree_width += (text_width + name_width);
/freebsd-12-stable/contrib/llvm-project/lldb/source/Interpreter/
H A DOptions.cpp290 int text_width = output_max_columns - strm.GetIndentLevel() - 1; local
302 end = start + text_width;

Completed in 121 milliseconds