Searched refs:text_width (Results 1 – 8 of 8) sorted by relevance
/freebsd/contrib/dialog/ |
H A D | checklist.c | 200 int use_width, list_width, name_width, text_width; in dlg_checklist() local 323 text_width = 0; in dlg_checklist() 327 text_width = MAX(text_width, dlg_count_columns(items[i].text)); in dlg_checklist() 337 list_width = MIN(all.use_width, text_width); in dlg_checklist() 341 if (text_width >= 0 in dlg_checklist() 344 && text_width + name_width > use_width) { in dlg_checklist() 348 (text_width + name_width)); in dlg_checklist() 351 text_width = use_width - name_width; in dlg_checklist() 353 list_width = (text_width + name_width); in dlg_checklist()
|
H A D | menubox.c | 360 int use_width, name_width, text_width, list_width; in dlg_menu() local 460 text_width = 0; in dlg_menu() 467 text_width = MAX(text_width, dlg_count_columns(items[i].text)); in dlg_menu() 478 list_width = MIN(use_width, text_width); in dlg_menu() 482 if (text_width >= 0 in dlg_menu() 485 && text_width + name_width > use_width) { in dlg_menu() 490 / (text_width + name_width)); in dlg_menu() 493 text_width = use_width - name_width; in dlg_menu() 495 list_width = (text_width + name_width); in dlg_menu()
|
H A D | treeview.c | 205 int use_width, name_width, text_width, tree_width; in dlg_treeview() local 309 text_width = 0; in dlg_treeview() 315 text_width = MAX(text_width, dlg_count_columns(items[i].text)); in dlg_treeview() 319 tree_width += text_width; in dlg_treeview() 323 tree_width += (text_width + name_width); in dlg_treeview()
|
H A D | buildlist.c | 560 int name_width, text_width, full_width, list_width; in dlg_buildlist() local 672 text_width = 0; in dlg_buildlist() 676 text_width = MAX(text_width, dlg_count_columns(items[i].text)); in dlg_buildlist() 686 full_width = MIN(all.use_width, text_width); in dlg_buildlist() 690 if (text_width >= 0 in dlg_buildlist() 693 && text_width + name_width > all.use_width) { in dlg_buildlist() 697 (text_width + name_width)); in dlg_buildlist() 700 text_width = all.use_width - name_width; in dlg_buildlist() 702 full_width = text_width + name_width; in dlg_buildlist()
|
H A D | util.c | 1054 dialog_state.text_width = 0; in justify_text() 1403 dialog_state.text_width = *width; in real_auto_size() 1449 dialog_state.text_height, dialog_state.text_width)); in dlg_auto_size()
|
H A D | dialog.h | 486 int text_width; member
|
H A D | dialog.c | 1479 dialog_state.text_width); in PrintTextOnly()
|
/freebsd/contrib/llvm-project/lldb/source/Interpreter/ |
H A D | Options.cpp | 294 int text_width = output_max_columns - strm.GetIndentLevel() - 1; in OutputFormattedUsageText() local 306 end = start + text_width; in OutputFormattedUsageText()
|