Searched refs:text_width (Results 1 – 5 of 5) sorted by relevance
| /freebsd-12.1/contrib/dialog/ |
| H A D | checklist.c | 200 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 D | menubox.c | 346 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 D | buildlist.c | 464 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 D | treeview.c | 205 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 D | Options.cpp | 293 int text_width = output_max_columns - strm.GetIndentLevel() - 1; in OutputFormattedUsageText() local 305 end = start + text_width; in OutputFormattedUsageText()
|