Searched refs:text_width (Results 1 – 8 of 8) sorted by relevance
| /freebsd-13.1/contrib/dialog/ |
| H A D | checklist.c | 201 int use_width, list_width, name_width, text_width; in dlg_checklist() local 325 text_width = 0; in dlg_checklist() 329 text_width = MAX(text_width, dlg_count_columns(items[i].text)); in dlg_checklist() 339 list_width = MIN(all.use_width, text_width); in dlg_checklist() 343 if (text_width >= 0 in dlg_checklist() 346 && text_width + name_width > use_width) { in dlg_checklist() 350 (text_width + name_width)); in dlg_checklist() 353 text_width = use_width - name_width; in dlg_checklist() 355 list_width = (text_width + name_width); in dlg_checklist()
|
| H A D | menubox.c | 348 int use_width, name_width, text_width, list_width; in dlg_menu() local 450 text_width = 0; in dlg_menu() 457 text_width = MAX(text_width, dlg_count_columns(items[i].text)); in dlg_menu() 468 list_width = MIN(use_width, text_width); in dlg_menu() 472 if (text_width >= 0 in dlg_menu() 475 && text_width + name_width > use_width) { in dlg_menu() 480 / (text_width + name_width)); in dlg_menu() 483 text_width = use_width - name_width; in dlg_menu() 485 list_width = (text_width + name_width); in dlg_menu()
|
| H A D | treeview.c | 206 int use_width, name_width, text_width, tree_width; in dlg_treeview() local 311 text_width = 0; in dlg_treeview() 317 text_width = MAX(text_width, dlg_count_columns(items[i].text)); in dlg_treeview() 321 tree_width += text_width; in dlg_treeview() 325 tree_width += (text_width + name_width); in dlg_treeview()
|
| H A D | buildlist.c | 558 int name_width, text_width, full_width, list_width; in dlg_buildlist() local 671 text_width = 0; in dlg_buildlist() 675 text_width = MAX(text_width, dlg_count_columns(items[i].text)); in dlg_buildlist() 685 full_width = MIN(all.use_width, text_width); in dlg_buildlist() 689 if (text_width >= 0 in dlg_buildlist() 692 && text_width + name_width > all.use_width) { in dlg_buildlist() 696 (text_width + name_width)); in dlg_buildlist() 699 text_width = all.use_width - name_width; in dlg_buildlist() 701 full_width = text_width + name_width; in dlg_buildlist()
|
| H A D | util.c | 983 dialog_state.text_width = 0; in justify_text() 1329 dialog_state.text_width = *width; in real_auto_size() 1375 dialog_state.text_height, dialog_state.text_width)); in dlg_auto_size()
|
| H A D | dialog.h | 469 int text_width; member
|
| H A D | dialog.c | 1380 dialog_state.text_width); in PrintTextOnly()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Interpreter/ |
| H A D | Options.cpp | 289 int text_width = output_max_columns - strm.GetIndentLevel() - 1; in OutputFormattedUsageText() local 301 end = start + text_width; in OutputFormattedUsageText()
|