Home
last modified time | relevance | path

Searched refs:text (Results 1 – 23 of 23) sorted by relevance

/extra/config/
A Dzconf.l26 static char *text; variable
43 text = xmalloc(START_STRSIZE); in new_string()
46 *text = 0; in new_string()
55 text = realloc(text, new_size); in append_string()
58 memcpy(text + text_size, str, size); in append_string()
60 text[text_size] = 0; in append_string()
65 text = xmalloc(size + 1); in alloc_string()
66 memcpy(text, str, size); in alloc_string()
67 text[size] = 0; in alloc_string()
107 zconflval.string = text;
[all …]
A Dkxgettext.c12 static char *escape(const char* text, char *bf, int len) in escape() argument
15 int multiline = strchr(text, '\n') != NULL; in escape()
17 int textlen = strlen(text); in escape()
19 if ((textlen > 0) && (text[textlen-1] == '\n')) in escape()
32 while (*text != '\0' && len > 1) { in escape()
33 if (*text == '"') in escape()
35 else if (*text == '\n') { in escape()
42 ++text; in escape()
45 else if (*text == '\\') { in escape()
49 *bfp++ = *text++; in escape()
A Dnconf.gui.c175 int get_line_no(const char *text) in get_line_no() argument
180 if (!text) in get_line_no()
183 for (i = 0; text[i] != '\0'; i++) in get_line_no()
184 if (text[i] == '\n') in get_line_no()
194 if (!text) in get_line()
198 if (text[i] == '\n') in get_line()
200 return text+i; in get_line()
217 int total_lines = get_line_no(text); in fill_window()
544 const char *text) in show_scroll_win() argument
562 total_lines = get_line_no(text); in show_scroll_win()
[all …]
A Dmconf.c294 static void show_helptext(const char *title, const char *text);
304 "%s - %s", config_filename, rootmenu.prompt->text); in set_config_filename()
316 const char *text; member
333 if (sp->text) { in set_subtitle()
340 pos->text = sp->text; in set_subtitle()
430 stpart.text = str_get(&sttext); in search_conf()
656 stpart.text = menu_get_prompt(menu); in conf()
658 stpart.text = NULL; in conf()
762 return dialog_textbox(title, text, r, c, keys, vscroll, hscroll, in show_textbox_ext()
772 static void show_helptext(const char *title, const char *text) in show_helptext() argument
[all …]
A Dnconf.h86 int get_line_no(const char *text);
87 const char *get_line(const char *text, int line_no);
88 void fill_window(WINDOW *win, const char *text);
96 const char *text);
A Dlkc.h36 #define _(text) gettext(text) argument
37 #define N_(text) (text) argument
A Dzconf.y513 rootmenu.prompt->text = _(rootmenu.prompt->text);
514 rootmenu.prompt->text = sym_expand_string_value(rootmenu.prompt->text);
641 print_quoted_string(out, prop->text); in print_symbol()
672 print_quoted_string(out, prop->text); in print_symbol()
702 print_quoted_string(out, prop->text); in zconfdump()
707 print_quoted_string(out, prop->text); in zconfdump()
A Dqconf.h178 void setText(colIdx idx, const QString& text) in setText() argument
180 Parent::setText(listView()->mapIdx(idx), text); in setText()
182 QString text(colIdx idx) const in text() function
184 return Parent::text(listView()->mapIdx(idx)); in text()
A Dzconf.lex.c_shipped788 static char *text;
808 *text = 0;
817 text = realloc(text, new_size);
822 text[text_size] = 0;
827 text = xmalloc(size + 1);
828 memcpy(text, str, size);
829 text[size] = 0;
1097 zconflval.string = text;
1169 zconflval.string = text;
1200 zconflval.string = text;
[all …]
A Dqconf.cc318 sym_set_string_value(item->menu->sym, text().latin1()); in keyPressEvent()
1020 head += print_filter(_(_menu->prompt->text)); in menuInfo()
1051 head += print_filter(_(_menu->prompt->text)); in menuInfo()
1086 debug += print_filter(_(prop->text)); in debug_info()
1154 QString* text = reinterpret_cast<QString*>(data); in expr_print_help() local
1158 *text += QString().sprintf("<a href=\"s%p\">", sym); in expr_print_help()
1159 *text += str2; in expr_print_help()
1160 *text += "</a>"; in expr_print_help()
1162 *text += str2; in expr_print_help()
1256 result = sym_re_search(editField->text().latin1()); in search()
[all …]
A Dexpr.h143 const char *text; /* the prompt value - P_PROMPT, P_MENU, P_COMMENT */ member
160 if (st->text)
A Dmenu.c172 prop->text = prompt; in menu_add_prop()
408 if (menu->list && (!menu->prompt || !menu->prompt->text)) { in menu_finalize()
503 return menu->prompt->text; in menu_get_prompt()
546 str_printf(r, _("Prompt: %s\n"), _(prop->text)); in get_prompt_str()
A Dkconfig-language.txt40 the config option, input prompt, dependencies, help text and default
129 - help text: "help" or "---help---"
130 This defines a help text. The end of the help text is determined by
132 a smaller indentation than the first line of the help text.
A Dconf.c139 printf("%*s%s ", indent - 1, "", _(menu->prompt->text)); in conf_string()
172 printf("%*s%s ", indent - 1, "", _(menu->prompt->text)); in conf_sym()
A Dzconf.tab.c_shipped2276 rootmenu.prompt->text = _(rootmenu.prompt->text);
2277 rootmenu.prompt->text = sym_expand_string_value(rootmenu.prompt->text);
2404 print_quoted_string(out, prop->text);
2435 print_quoted_string(out, prop->text);
2465 print_quoted_string(out, prop->text);
2470 print_quoted_string(out, prop->text);
A Dnconf.c633 "%s - %s", config_filename, rootmenu.prompt->text); in set_config_filename()
A Dconfdata.c648 rootmenu.prompt->text); in conf_write_heading()
A Dgconf.c212 gtk_window_set_title(GTK_WINDOW(main_wnd), rootmenu.prompt->text); in init_main_window()
/extra/config/lxdialog/
A Dutil.c273 len += strlen(pos->text) + 3; in dialog_clear()
294 if (skip < strlen(pos->text)) { in dialog_clear()
295 waddstr(stdscr, pos->text + skip); in dialog_clear()
298 skip -= strlen(pos->text); in dialog_clear()
A Ddialog.h111 const char *text; member
/extra/scripts/
A Dunifdef.c163 static bool text; /* -t: this is a text file */ variable
330 text = true; in main()
1150 if (text || ignoring[depth]) { in skipcomment()
/extra/locale/
A DREADME31 text data bss dec hex filename
/extra/Configs/
A DConfig.in366 bool "Only load shared libraries which can share their text segment"
984 file consists of a single line (newline required) of text describing
1899 bool "Include the errno message text in the library"
1902 Answer Y if you want to include the errno message text in the
1904 to generate text other than 'Unknown error <number>'.
1925 bool "Include the signum message text in the library"
1928 Answer Y if you want to include the signum message text in the
1930 to generate text other than 'Unknown signal <number>'.

Completed in 49 milliseconds