| /scripts/kconfig/ |
| A D | zconf.l | 26 static char *text; variable 45 text = xmalloc(START_STRSIZE); in new_string() 48 *text = 0; in new_string() 57 text = xrealloc(text, new_size); in append_string() 62 text[text_size] = 0; in append_string() 67 text = xmalloc(size + 1); in alloc_string() 68 memcpy(text, str, size); in alloc_string() 69 text[size] = 0; in alloc_string() 114 yylval.string = text; 138 yylval.string = text; [all …]
|
| A D | nconf.h | 83 int get_line_no(const char *text); 84 const char *get_line(const char *text, int line_no); 85 void fill_window(WINDOW *win, const char *text); 93 const char *text);
|
| A D | nconf.gui.c | 174 int get_line_no(const char *text) in get_line_no() argument 179 if (!text) in get_line_no() 182 for (i = 0; text[i] != '\0'; i++) in get_line_no() 183 if (text[i] == '\n') in get_line_no() 193 if (!text) in get_line() 197 if (text[i] == '\n') in get_line() 199 return text+i; in get_line() 216 int total_lines = get_line_no(text); in fill_window() 547 const char *text) in show_scroll_win() argument 565 total_lines = get_line_no(text); in show_scroll_win() [all …]
|
| A D | mconf.c | 292 static void show_helptext(const char *title, const char *text); 302 "%s - %s", config_filename, rootmenu.prompt->text); in set_config_filename() 314 const char *text; member 331 if (sp->text) { in set_subtitle() 338 pos->text = sp->text; in set_subtitle() 428 stpart.text = str_get(&sttext); in search_conf() 653 stpart.text = menu_get_prompt(menu); in conf() 655 stpart.text = NULL; in conf() 759 return dialog_textbox(title, text, r, c, keys, vscroll, hscroll, in show_textbox_ext() 769 static void show_helptext(const char *title, const char *text) in show_helptext() argument [all …]
|
| A D | qconf.h | 168 void setText(colIdx idx, const QString& text) in setText() argument 170 Parent::setText(idx, text); in setText() 172 QString text(colIdx idx) const in text() function 174 return Parent::text(idx); in text()
|
| A D | expr.h | 195 const char *text; /* the prompt value - P_PROMPT, P_MENU, P_COMMENT */ member 212 if (st->text)
|
| A D | qconf.cc | 291 sym_set_string_value(item->menu->sym, text().toLatin1()); in keyPressEvent() 1080 head += print_filter(_menu->prompt->text); in menuInfo() 1111 head += print_filter(_menu->prompt->text); in menuInfo() 1146 debug += print_filter(prop->text); in debug_info() 1213 QString* text = reinterpret_cast<QString*>(data); in expr_print_help() local 1217 *text += QString().sprintf("<a href=\"s%p\">", sym); in expr_print_help() 1218 *text += str2; in expr_print_help() 1219 *text += "</a>"; in expr_print_help() 1221 *text += str2; in expr_print_help() 1320 result = sym_re_search(editField->text().toLatin1()); in search() [all …]
|
| A D | zconf.y | 681 print_quoted_string(out, prop->text); in print_symbol() 717 print_quoted_string(out, prop->text); in print_symbol() 751 print_quoted_string(out, prop->text); in zconfdump() 756 print_quoted_string(out, prop->text); in zconfdump()
|
| A D | menu.c | 172 prop->text = prompt; in menu_add_prop() 564 if (menu->list && (!menu->prompt || !menu->prompt->text)) { in menu_finalize() 668 return menu->prompt->text; in menu_get_prompt() 711 str_printf(r, "Prompt: %s\n", prop->text); in get_prompt_str()
|
| A D | conf.c | 135 printf("%*s%s ", indent - 1, "", menu->prompt->text); in conf_string() 168 printf("%*s%s ", indent - 1, "", menu->prompt->text); in conf_sym()
|
| A D | nconf.c | 635 "%s - %s", config_filename, rootmenu.prompt->text); in set_config_filename()
|
| A D | confdata.c | 694 rootmenu.prompt->text); in conf_write_heading()
|
| A D | gconf.c | 188 gtk_window_set_title(GTK_WINDOW(main_wnd), rootmenu.prompt->text); in init_main_window()
|
| /scripts/ |
| A D | cleanpatch | 161 $text = substr($line, 1); 162 $text =~ s/[ \t\r]*$//; # Remove trailing spaces 163 $text = clean_space_tabs($text); 165 $l_width = strwidth($text); 172 push(@hunk_lines, '+'.$text);
|
| A D | get_maintainer.pl | 440 my $text = do { local($/) ; <$f> }; 443 …my @poss_addr = $text =~ m$[A-Za-zÀ-ÿ\"\' \,\.\+-]*\s*[\,]*\s*[\(\<\{]{0,1}[A-Za-z0-9_\.\+-]+\@[A-… 552 my $text = do { local($/) ; <$f> }; 556 if ($text =~ m/$keyword_hash{$line}/x) {
|
| A D | checkpatch.pl | 166 my $text = <$script>; 171 while ($text =~ /(?:(\bCHK|\bWARN|\bERROR|&\{\$msg_level})\s*\(|\$msg_type\s*=)\s*"([^"]+)"/g) { 1083 my $text = <$include_file>; 1086 my @lines = split('\n', $text);
|
| /scripts/dtc/ |
| A D | srcpos.c | 210 void srcpos_update(struct srcpos *pos, const char *text, int len) in srcpos_update() argument 220 if (text[i] == '\n') { in srcpos_update()
|
| A D | srcpos.h | 105 extern void srcpos_update(struct srcpos *pos, const char *text, int len);
|
| /scripts/kconfig/lxdialog/ |
| A D | util.c | 260 len += strlen(pos->text) + 3; in dialog_clear() 281 if (skip < strlen(pos->text)) { in dialog_clear() 282 waddstr(stdscr, pos->text + skip); in dialog_clear() 285 skip -= strlen(pos->text); in dialog_clear()
|
| A D | dialog.h | 92 const char *text; member
|