Home
last modified time | relevance | path

Searched refs:string (Results 1 – 25 of 26) sorted by relevance

12

/scripts/genksyms/
Dgenksyms.c72 static struct string_list *mk_node(const char *string);
191 strcmp(defn->string, "}") == 0 && in is_unknown_symbol()
193 strcmp(defn->string, "UNKNOWN") == 0 && in is_unknown_symbol()
195 strcmp(defn->string, "{") == 0); in is_unknown_symbol()
338 free(node->string); in free_node()
351 static struct string_list *mk_node(const char *string) in mk_node() argument
356 newnode->string = xstrdup(string); in mk_node()
385 newnode->string = xstrdup(node->string); in copy_node()
410 if (a->tag != b->tag || strcmp(a->string, b->string)) in equal_list()
425 .string = buffer, in read_node()
[all …]
Dparse.y70 add_symbol(i->string, type, b, is_extern); in record_compound()
301 current_name = (*$1)->string;
472 const char *name = strdup((*$1)->string);
477 const char *name = strdup((*$1)->string);
493 { export_symbol((*$3)->string); $$ = $5; }
Dlex.l115 cur_node->string = memcpy(xmalloc(L+1), T, L+1); \
117 find_symbol(cur_node->string, SYM_ENUM_CONST, 1)?\
Dgenksyms.h41 char *string; member
Dparse.tab.c_shipped72 #include <string.h>
114 add_symbol(i->string, type, b, is_extern);
1192 heuristic is that double-quoting is unnecessary unless the string
1253 /* Internationalized format string. */
1354 produced a string with the wrong number of "%s"s. */
1903 current_name = (*(yyvsp[(1) - (1)]))->string;
2132 const char *name = strdup((*(yyvsp[(1) - (1)]))->string);
2140 const char *name = strdup((*(yyvsp[(1) - (3)]))->string);
2158 { export_symbol((*(yyvsp[(3) - (5)]))->string); (yyval) = (yyvsp[(5) - (5)]); }
Dlex.lex.c_shipped20 #include <string.h>
563 #include <string.h>
660 /* This used to be an fputs(), but since the string might contain NUL's,
1650 /** Setup the input buffer state to scan a string. The next call to yylex() will
1652 * @param yystr a NUL-terminated string to scan
1925 cur_node->string = memcpy(xmalloc(L+1), T, L+1); \
1927 find_symbol(cur_node->string, SYM_ENUM_CONST, 1)?\
/scripts/
Dshow_delta13 import string
49 (time_str, rest) = string.split(line[1:],']',1)
50 time = string.atof(time_str)
114 if string.find(rest, base_str)==1:
Dcheckpatch.pl345 my ($string) = @_;
346 return "" if (!defined($string));
347 $string =~ s@^\s*\(\s*@@g;
348 $string =~ s@\s*\)\s*$@@g;
349 $string =~ s@\s+@ @g;
350 return $string;
1355 my $string = substr($line, $pos);
1356 if ($string =~ /^($FuncArg|$balanced_parens)/) {
1360 } elsif (index($string, '(') == -1) {
3433 my $string;
[all …]
Dconfig13 --set-str option string
DKbuild.include200 # Check if both arguments has same arguments. Result is empty string if equal.
/scripts/kconfig/
Dzconf.gperf4 %define string-pool-name kconf_id_strings
38 string, T_TYPE, TF_COMMAND, S_STRING keyword
Dzconf.tab.c_shipped87 #include <string.h>
180 char *string;
1128 heuristic is that double-quoting is unnecessary unless the string
1260 produced a string with the wrong number of "%s"s. */
1645 { zconf_error("unknown statement \"%s\"", (yyvsp[(2) - (4)].string)); ;}
1662 { zconf_error("unknown option \"%s\"", (yyvsp[(1) - (3)].string)); ;}
1673 struct symbol *sym = sym_lookup((yyvsp[(2) - (3)].string), 0);
1676 …printd(DEBUG_PARSE, "%s:%d:config %s\n", zconf_curname(), zconf_lineno(), (yyvsp[(2) - (3)].string
1691 struct symbol *sym = sym_lookup((yyvsp[(2) - (3)].string), 0);
1694 …(DEBUG_PARSE, "%s:%d:menuconfig %s\n", zconf_curname(), zconf_lineno(), (yyvsp[(2) - (3)].string));
[all …]
Dzconf.l107 zconflval.string = text;
140 zconflval.string = text;
Dzconf.y38 char *string; member
56 %token <string> T_HELPTEXT
69 %token <string> T_WORD
70 %token <string> T_WORD_QUOTE
81 %type <string> prompt
88 %type <string> symbol_option_arg word_opt
Dnconf.h83 const char *string,
Dnconf.gui.c151 const char *string, in print_in_middle() argument
167 length = strlen(string); in print_in_middle()
171 mvwprintw(win, y, x, "%s", string); in print_in_middle()
Dzconf.lex.c_shipped39 #include <string.h>
776 #include <string.h>
920 /* This used to be an fputs(), but since the string might contain NUL's,
1097 zconflval.string = text;
1169 zconflval.string = text;
1200 zconflval.string = text;
1218 zconflval.string = text;
1233 zconflval.string = text;
2045 /** Setup the input buffer state to scan a string. The next call to zconflex() will
2047 * @param yystr a NUL-terminated string to scan
[all …]
Dzconf.hash.c_shipped121 char kconf_id_strings_str51[sizeof("string")];
156 "string",
Dgconf.c990 if (!strcasecmp(event->string, "n")) in on_treeview2_key_press_event()
992 else if (!strcasecmp(event->string, "m")) in on_treeview2_key_press_event()
994 else if (!strcasecmp(event->string, "y")) in on_treeview2_key_press_event()
/scripts/dtc/
Dflattree.c52 void (*string)(void *, char *, int); member
109 .string = bin_emit_string,
235 .string = asm_emit_string,
269 emit->string(etarget, tree->fullpath, 0); in flatten_tree()
271 emit->string(etarget, tree->name, 0); in flatten_tree()
302 emit->string(etarget, tree->name, tree->basenamelen); in flatten_tree()
Ddtc-lexer.lex.c_shipped20 #include <string.h>
678 /* This used to be an fputs(), but since the string might contain NUL's,
1699 /** Setup the input buffer state to scan a string. The next call to yylex() will
1701 * @param yystr a NUL-terminated string to scan
/scripts/rt-tester/
Drt-tester.py15 import string
/scripts/kconfig/lxdialog/
Ddialog.h208 int first_alpha(const char *string, const char *exempt);
Dutil.c476 int first_alpha(const char *string, const char *exempt) in first_alpha() argument
480 for (i = 0; i < strlen(string); i++) { in first_alpha()
481 c = tolower(string[i]); in first_alpha()
/scripts/mod/
Dmodpost.c663 static char *next_string(char *string, unsigned long *secsize) in next_string() argument
666 while (string[0]) { in next_string()
667 string++; in next_string()
673 while (!string[0]) { in next_string()
674 string++; in next_string()
678 return string; in next_string()

12