Lines Matching defs:res
388 struct gstr res = str_new();
392 get_symbol_str(&res, sym);
394 str_append(&res, "No matches found.\n");
395 return res;
401 struct gstr res;
419 res = get_relations_str(sym_arr);
421 show_textbox(_("Search Results"), str_get(&res), 0, 0);
422 str_free(&res);
589 int res;
607 res = dialog_menu(prompt ? prompt : _("Main Menu"),
610 if (res == 1 || res == KEY_ESC || res == -ERRDISPLAYTOOSMALL)
624 switch (res) {
724 int res;
740 res = dialog_checklist(prompt ? prompt : _("Main Menu"),
744 switch (res) {
772 int res;
789 res = dialog_inputbox(prompt ? prompt : _("Main Menu"),
792 switch (res) {
811 int res;
813 res = dialog_inputbox(NULL, load_config_text,
815 switch(res) {
835 int res;
837 res = dialog_inputbox(NULL, save_config_text,
839 switch(res) {
865 int res;
893 res = dialog_yesno(NULL,
898 } while (res == KEY_ESC);
900 if (res == 0) {