| /utopia/UTPA2-700.0.x/projects/build/scripts/kconfig/ |
| H A D | nconf.gui.c | 175 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() 189 const char *get_line(const char *text, int line_no) in get_line() argument 194 if (!text) in get_line() 197 for (i = 0; text[i] != '\0' && lines < line_no; i++) in get_line() 198 if (text[i] == '\n') in get_line() 200 return text+i; in get_line() 214 void fill_window(WINDOW *win, const char *text) in fill_window() argument [all …]
|
| H A D | zconf.l | 27 static char *text; variable 44 text = malloc(START_STRSIZE); in new_string() 47 *text = 0; in new_string() 56 text = realloc(text, new_size); in append_string() 59 memcpy(text + text_size, str, size); in append_string() 61 text[text_size] = 0; in append_string() 66 text = malloc(size + 1); in alloc_string() 67 memcpy(text, str, size); in alloc_string() 68 text[size] = 0; in alloc_string() 108 zconflval.string = text; [all …]
|
| H A D | kxgettext.c | 13 static char *escape(const char* text, char *bf, int len) in escape() argument 16 int multiline = strchr(text, '\n') != NULL; in escape() 18 int textlen = strlen(text); in escape() 20 if ((textlen > 0) && (text[textlen-1] == '\n')) in escape() 33 while (*text != '\0' && len > 1) { in escape() 34 if (*text == '"') in escape() 36 else if (*text == '\n') { in escape() 43 ++text; in escape() 46 else if (*text == '\\') { in escape() 50 *bfp++ = *text++; in escape()
|
| H A D | lex.zconf.c | 798 static char *text; variable 815 text = malloc(START_STRSIZE); in new_string() 818 *text = 0; in new_string() 827 text = realloc(text, new_size); in append_string() 830 memcpy(text + text_size, str, size); in append_string() 832 text[text_size] = 0; in append_string() 837 text = malloc(size + 1); in alloc_string() 838 memcpy(text, str, size); in alloc_string() 839 text[size] = 0; in alloc_string() 1112 zconflval.string = text; [all …]
|
| H A D | zconf.y | 520 rootmenu.prompt->text = _(rootmenu.prompt->text); 521 rootmenu.prompt->text = sym_expand_string_value(rootmenu.prompt->text); 650 print_quoted_string(out, prop->text); in print_symbol() 681 print_quoted_string(out, prop->text); in print_symbol() 711 print_quoted_string(out, prop->text); in zconfdump() 716 print_quoted_string(out, prop->text); in zconfdump()
|
| H A D | mconf.c | 282 static void show_textbox(const char *title, const char *text, int r, int c); 283 static void show_helptext(const char *title, const char *text); 293 "%s - %s", config_filename, rootmenu.prompt->text); in set_config_filename() 621 static void show_textbox(const char *title, const char *text, int r, int c) in show_textbox() argument 624 dialog_textbox(title, text, r, c); in show_textbox() 627 static void show_helptext(const char *title, const char *text) in show_helptext() argument 629 show_textbox(title, text, 0, 0); in show_helptext()
|
| H A D | lex.zconf.c_shipped | 264 /* When an EOF's been seen but there's still some text to process 798 static char *text; 815 text = malloc(START_STRSIZE); 818 *text = 0; 827 text = realloc(text, new_size); 830 memcpy(text + text_size, str, size); 832 text[text_size] = 0; 837 text = malloc(size + 1); 838 memcpy(text, str, size); 839 text[size] = 0; [all …]
|
| H A D | qconf.cc | 107 sym_set_string_value(menu->sym, text(dataColIdx).latin1()); in okRename() 317 sym_set_string_value(item->menu->sym, text().latin1()); in keyPressEvent() 343 disabledColorGroup.setColor(QColorGroup::Text, palette().disabled().text()); in ConfigList() 1019 head += print_filter(_(_menu->prompt->text)); in menuInfo() 1050 head += print_filter(_(_menu->prompt->text)); in menuInfo() 1085 debug += print_filter(_(prop->text)); in debug_info() 1153 QString* text = reinterpret_cast<QString*>(data); in expr_print_help() local 1157 *text += QString().sprintf("<a href=\"s%p\">", sym); in expr_print_help() 1158 *text += str2; in expr_print_help() 1159 *text += "</a>"; in expr_print_help() [all …]
|
| H A D | nconf.h | 86 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);
|
| H A D | zconf.tab.c | 2275 rootmenu.prompt->text = _(rootmenu.prompt->text); in conf_parse() 2276 rootmenu.prompt->text = sym_expand_string_value(rootmenu.prompt->text); in conf_parse() 2405 print_quoted_string(out, prop->text); in print_symbol() 2436 print_quoted_string(out, prop->text); in print_symbol() 2466 print_quoted_string(out, prop->text); in zconfdump() 2471 print_quoted_string(out, prop->text); in zconfdump()
|
| H A D | lkc.h | 41 #define _(text) gettext(text) argument 42 #define N_(text) (text) argument
|
| H A D | qconf.h | 178 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()
|
| H A D | menu.c | 159 prop->text = prompt; in menu_add_prop() 395 if (menu->list && (!menu->prompt || !menu->prompt->text)) { in menu_finalize() 474 return menu->prompt->text; in menu_get_prompt() 515 str_printf(r, _("Prompt: %s\n"), _(prop->text)); in get_prompt_str()
|
| H A D | zconf.tab.c_shipped | 2275 rootmenu.prompt->text = _(rootmenu.prompt->text); 2276 rootmenu.prompt->text = sym_expand_string_value(rootmenu.prompt->text); 2405 print_quoted_string(out, prop->text); 2436 print_quoted_string(out, prop->text); 2466 print_quoted_string(out, prop->text); 2471 print_quoted_string(out, prop->text);
|
| H A D | confdata.c | 603 rootmenu.prompt->text); in conf_write() 807 rootmenu.prompt->text); in conf_write_autoconf() 815 rootmenu.prompt->text); in conf_write_autoconf()
|
| H A D | expr.h | 138 const char *text; /* the prompt value - P_PROMPT, P_MENU, P_COMMENT */ member 155 if (st->text)
|
| H A D | conf.c | 136 printf("%*s%s ", indent - 1, "", _(menu->prompt->text)); in conf_string() 168 printf("%*s%s ", indent - 1, "", _(menu->prompt->text)); in conf_sym()
|
| /utopia/UTPA2-700.0.x/projects/build/scripts/ |
| H A D | recordmcount.pl | 465 my $text; 505 $text = $2; 510 if (!defined($locals{$text}) && !defined($weak{$text})) { 511 $ref_func = $text; 516 if (!defined($ref_func) && !defined($weak{$text}) && 519 $text !~ /^\.L/) { 520 $ref_func = $text;
|
| H A D | kernel-doc | 1997 my $text = shift; 1999 return $text; 2001 $text =~ s/\&/\\\\\\amp;/g; 2002 $text =~ s/\</\\\\\\lt;/g; 2003 $text =~ s/\>/\\\\\\gt;/g; 2004 return $text; 2010 my $text = shift; 2012 return $text; 2014 $text =~ s/\\\\\\\\lt:/</g; 2015 $text =~ s/\\\\\\\\gt:/>/g; [all …]
|
| H 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);
|
| H A D | unifdef.c | 175 static bool text; /* -t: this is a text file */ variable 304 text = true; in main() 974 if (text || ignoring[depth]) { in skipcomment()
|
| /utopia/UTPA2-700.0.x/projects/tools/lint/mips-linux-gnu_include/bits/ |
| H A D | stab.def | 30 /* Function name or text-segment variable for C. Value is its address. 71 /* Line number in text segment. Desc is the line number; 110 Value is starting text address of the compilation. */ 123 Value is starting text address of the compilation. */ 141 The value is the address of the start of the text for the block. 155 The value is the address of the end of the text for the block. */
|
| /utopia/UTPA2-700.0.x/projects/build/scripts/dtc/ |
| H A D | srcpos.c | 132 void srcpos_update(struct srcpos *pos, const char *text, int len) in srcpos_update() argument 142 if (text[i] == '\n') { in srcpos_update() 145 } else if (text[i] == '\t') { in srcpos_update()
|
| /utopia/UTPA2-700.0.x/projects/build/ |
| H A D | bspOneUtopia.dxyfile | 6 # All text after a hash (#) is considered a comment and will be ignored 20 # text before the first occurrence of this tag. Doxygen uses libiconv (or the 81 # that is used to form the text in various listings. Each string 82 # in this list, if found as the leading text of the brief description, will be 83 # stripped from the text and the result after processing the whole list, is 84 # used as the annotated text. Otherwise, the brief description is used as-is. 543 # doxygen can produce. The string should contain the $file, $line, and $text 545 # warning originated and the warning text. Optionally the format may contain 549 WARN_FORMAT = "$file:$line: $text "
|
| H A D | bsp.dxyfile | 6 # All text after a hash (#) is considered a comment and will be ignored 19 # text before the first occurrence of this tag. Doxygen uses libiconv (or the 80 # that is used to form the text in various listings. Each string 81 # in this list, if found as the leading text of the brief description, will be 82 # stripped from the text and the result after processing the whole list, is 83 # used as the annotated text. Otherwise, the brief description is used as-is. 542 # doxygen can produce. The string should contain the $file, $line, and $text 544 # warning originated and the warning text. Optionally the format may contain 548 WARN_FORMAT = "$file:$line: $text "
|