Searched defs:text (Results 1 - 8 of 8) sorted by relevance

/scripts/dtc/
H A Dsrcpos.c136 void srcpos_update(struct srcpos *pos, const char *text, int len) argument
146 if (text[i] == '\n') {
149 } else if (text[i] == '\t') {
/scripts/kconfig/
H A Dkxgettext.c12 static char *escape(const char* text, char *bf, int len) argument
15 int multiline = strchr(text, '\n') != NULL;
17 int textlen = strlen(text);
19 if ((textlen > 0) && (text[textlen-1] == '\n'))
32 while (*text != '\0' && len > 1) {
33 if (*text == '"')
35 else if (*text == '\n') {
42 ++text;
45 else if (*text == '\\') {
49 *bfp++ = *text
[all...]
H A Dmconf.c30 "must be entered in as decimal or hexadecimal numbers or text.\n"
249 "o The line 'Prompt:' shows the text used in the menu structure for\n"
283 static void show_textbox(const char *title, const char *text, int r, int c);
284 static void show_helptext(const char *title, const char *text);
294 "%s - %s", config_filename, rootmenu.prompt->text);
622 static void show_textbox(const char *title, const char *text, int r, int c) argument
625 dialog_textbox(title, text, r, c);
628 static void show_helptext(const char *title, const char *text) argument
630 show_textbox(title, text, 0, 0);
H A Dnconf.gui.c175 int get_line_no(const char *text) argument
180 if (!text)
183 for (i = 0; text[i] != '\0'; i++)
184 if (text[i] == '\n')
189 const char *get_line(const char *text, int line_no) argument
194 if (!text)
197 for (i = 0; text[i] != '\0' && lines < line_no; i++)
198 if (text[i] == '\n')
200 return text+i;
214 void fill_window(WINDOW *win, const char *text) argument
542 show_scroll_win(WINDOW *main_window, const char *title, const char *text) argument
[all...]
H A Dexpr.h125 P_COMMENT, /* text associated with a comment */
139 const char *text; /* the prompt value - P_PROMPT, P_MENU, P_COMMENT */ member in struct:property
156 if (st->text)
H A Dqconf.h178 void setText(colIdx idx, const QString& text) argument
180 Parent::setText(listView()->mapIdx(idx), text); local
182 QString text(colIdx idx) const function in class:ConfigItem
184 return Parent::text(listView()->mapIdx(idx));
H A Dqconf.cc107 sym_set_string_value(menu->sym, text(dataColIdx).latin1());
317 sym_set_string_value(item->menu->sym, text().latin1());
343 disabledColorGroup.setColor(QColorGroup::Text, palette().disabled().text());
1019 head += print_filter(_(_menu->prompt->text));
1050 head += print_filter(_(_menu->prompt->text));
1085 debug += print_filter(_(prop->text));
1153 QString* text = reinterpret_cast<QString*>(data); local
1157 *text += QString().sprintf("<a href=\"s%p\">", sym);
1158 *text += str2;
1159 *text
[all...]
/scripts/
H A Dunifdef.c151 * Sometimes when editing a keyword the replacement text is longer, so
175 static bool text; /* -t: this is a text file */ variable
247 case 'i': /* treat stuff controlled by these symbols as text */
304 text = true;
974 if (text || ignoring[depth]) {

Completed in 699 milliseconds