Searched defs:string (Results 1 - 8 of 8) sorted by relevance
/scripts/ |
H A D | show_delta | 13 import string namespace 28 <base> can be a number or a string. 29 If it is a string, the first message line 49 (time_str, rest) = string.split(line[1:],']',1) 50 time = string.atof(time_str) 107 # search for line matching <base> string 114 if string.find(rest, base_str)==1:
|
/scripts/genksyms/ |
H A D | genksyms.h | 41 char *string; member in struct:string_list
|
H A D | genksyms.c | 25 #include <string.h> 72 static struct string_list *mk_node(const char *string); 191 strcmp(defn->string, "}") == 0 && 193 strcmp(defn->string, "UNKNOWN") == 0 && 195 strcmp(defn->string, "{") == 0); 338 free(node->string); 351 static struct string_list *mk_node(const char *string) argument 356 newnode->string = xstrdup(string); 385 newnode->string [all...] |
/scripts/rt-tester/ |
H A D | rt-tester.py | 15 import string namespace 199 # Build command string and sys filename
|
/scripts/kconfig/ |
H A D | nconf.gui.c | 151 const char *string, 167 length = strlen(string); 171 mvwprintw(win, y, x, "%s", string); 147 print_in_middle(WINDOW *win, int starty, int startx, int width, const char *string, chtype color) argument
|
/scripts/kconfig/lxdialog/ |
H A D | util.c | 324 * Print a string of text in a window, automatically wrap around to the 325 * next line if the string is too long to fit on one line. Newline 474 * Return the position of the first alphabetic character in a string. 476 int first_alpha(const char *string, const char *exempt) argument 480 for (i = 0; i < strlen(string); i++) { 481 c = tolower(string[i]);
|
/scripts/dtc/ |
H A D | flattree.c | 52 void (*string)(void *, char *, int); member in struct:emitter 109 .string = bin_emit_string, 158 fprintf(f, "\t.string\t\"%s\"\n", str); 235 .string = asm_emit_string, 269 emit->string(etarget, tree->fullpath, 0); 271 emit->string(etarget, tree->name, 0); 302 emit->string(etarget, tree->name, tree->basenamelen); 455 fprintf(f, "\t.string \"%s\"\n", p); 663 die("String offset %d overruns string table\n",
|
/scripts/mod/ |
H A D | modpost.c | 17 #include <string.h> 379 /* End of string */ 660 static char *next_string(char *string, unsigned long *secsize) argument 663 while (string[0]) { 664 string++; 670 while (!string[0]) { 671 string++; 675 return string; 705 * Test if string s ends in string su [all...] |
Completed in 96 milliseconds