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

/freebsd-10.0-release/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-10.0-release/contrib/llvm/tools/lldb/source/Interpreter/
H A DCommandInterpreter.cpp2728 int text_width; local
2736 text_width = max_columns - 1;
2738 text_width = max_columns - indent_size - 1;
2747 end = start + text_width;
H A DOptions.cpp357 int text_width = output_max_columns - strm.GetIndentLevel() - 1; local
369 end = start + text_width;
/freebsd-10.0-release/contrib/llvm/tools/lldb/tools/driver/
H A DDriver.cpp186 int text_width = output_max_columns - indent - 1; local
198 end = start + text_width;

Completed in 165 milliseconds