Home
last modified time | relevance | path

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

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