HomeSort by: relevance | last modified time | path
    Searched defs:lines (Results 1 - 25 of 164) sorted by relevancy

1 2 3 4 5 6 7

  /src/external/bsd/byacc/dist/test/
btyacc_calc1.y 30 %start lines
52 lines : /* empty */ label
53 | lines line '\n' [YYVALID;]
54 | lines error '\n' [YYVALID;]
calc1.y 54 lines : /* empty */ label
55 | lines line
varsyntax_calc1.y 56 lines : // empty */ label
57 | lines line
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/gpio/
priv.h 10 int lines; member in struct:nvkm_gpio_func
13 * for lines that have not been masked off, while still
19 * given set of gpio lines
  /src/external/gpl3/gcc/dist/contrib/
check-MAINTAINERS.py 66 def check_group(name, lines):
69 for line in lines:
74 lines = [line + '\n' for line in lines]
75 sorted_lines = sorted(lines, key=sort_by_surname)
76 if lines != sorted_lines:
78 diff = ndiff(lines, sorted_lines)
85 lines = open(sys.argv[1]).read().splitlines() variable
88 lines = list(dropwhile(lambda x: x.strip() != needle, lines)) variable
89 lines = lines[2:] variable
95 lines = list(dropwhile(lambda x: needle not in x, lines)) variable
96 lines = lines[2:] variable
102 lines = list(dropwhile(lambda x: needle not in x, lines)) variable
103 lines = lines[2:] variable
109 lines = list(dropwhile(lambda x: needle not in x, lines))[1:] variable
110 lines = list(dropwhile(lambda x: not has_tab(x), lines)) variable
    [all...]
filter-clang-warnings.py 73 lines = [line.strip() for line in open(args.log)] variable
75 for line in lines:
git-fix-changelog.py 37 def replace_file_in_changelog(lines, filename, fixed):
40 for i, line in enumerate(lines):
42 lines[i] = line.replace(filename, fixed)
60 lines = r.stdout.splitlines() variable
66 # Parse the following lines:
70 for line in lines:
  /src/external/gpl3/gcc.old/dist/contrib/
check-MAINTAINERS.py 66 def check_group(name, lines):
69 for line in lines:
74 lines = [line + '\n' for line in lines]
75 sorted_lines = sorted(lines, key=sort_by_surname)
76 if lines != sorted_lines:
78 diff = ndiff(lines, sorted_lines)
85 lines = open(sys.argv[1]).read().splitlines() variable
88 lines = list(dropwhile(lambda x: x.strip() != needle, lines)) variable
89 lines = lines[2:] variable
95 lines = list(dropwhile(lambda x: needle not in x, lines)) variable
96 lines = lines[2:] variable
102 lines = list(dropwhile(lambda x: needle not in x, lines)) variable
103 lines = lines[2:] variable
109 lines = list(dropwhile(lambda x: needle not in x, lines))[1:] variable
110 lines = list(dropwhile(lambda x: not has_tab(x), lines)) variable
    [all...]
filter-clang-warnings.py 71 lines = [line.strip() for line in open(args.log)] variable
74 for line in lines:
git-fix-changelog.py 37 def replace_file_in_changelog(lines, filename, fixed):
40 for i, line in enumerate(lines):
42 lines[i] = line.replace(filename, fixed)
60 lines = r.stdout.splitlines() variable
66 # Parse the following lines:
70 for line in lines:
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
checkpoint.c 22 long lines = 0; variable
49 lines++; /* breakpoint 1 */
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
checkpoint.c 22 long lines = 0; variable
49 lines++; /* breakpoint 1 */
  /src/games/rain/
rain.c 63 static long lines; variable
109 ypos[j] = random() % lines + 2;
116 if (is_term_resized(LINES, COLS)) {
117 resizeterm(LINES, COLS);
121 y = random() % lines + 2;
157 lines = LINES - 4;
159 if (lines == 0) lines++;
  /src/usr.bin/tail/
read.c 58 * rflag is set, the data is displayed in lines in reverse order, and this
122 * displaylines -- read lines to an offset from the end and display.
126 * rflag is set, the data is displayed in lines in reverse order, and this
140 } *lines; local
147 if ((lines = malloc(off * sizeof(*lines))) == NULL)
150 memset(lines, 0, sizeof(*lines) * off);
165 if (lines[recno].blen < cnt) {
166 if ((n = realloc(lines[recno].l
    [all...]
  /src/crypto/external/apache2/openssl/dist/crypto/ts/
ts_rsp_print.c 72 int i, lines = 0; local
93 lines = ts_status_map_print(bio, failure_map, a->failure_info);
94 if (lines == 0)
104 int lines = 0; local
108 if (++lines > 1)
114 return lines;
  /src/crypto/external/bsd/heimdal/dist/cf/
symbol-version.py 78 lines = sys.stdin.readlines() variable
80 for line in lines:
  /src/crypto/external/bsd/heimdal/dist/lib/sl/
test_sl.c 42 } lines[] = { variable in typeref:struct:__anon946
72 for (i = 0; i < sizeof(lines)/sizeof(lines[0]); i++) {
75 char *buf = strdup(lines[i].line);
79 if (!lines[i].ok)
82 } else if (!lines[i].ok)
84 if (rargc != lines[i].argc)
86 rargc, lines[i].argc, i);
88 if (strcmp(rargv[j], lines[i].argv[j]) != 0)
90 rargv[j], lines[i].argv[j], i)
    [all...]
  /src/crypto/external/bsd/openssl/dist/crypto/ts/
ts_rsp_print.c 73 int i, lines = 0; local
94 lines = ts_status_map_print(bio, failure_map, a->failure_info);
95 if (lines == 0)
105 int lines = 0; local
109 if (++lines > 1)
115 return lines;
  /src/crypto/external/bsd/openssl.old/dist/crypto/ts/
ts_rsp_print.c 73 int i, lines = 0; local
94 lines = ts_status_map_print(bio, failure_map, a->failure_info);
95 if (lines == 0)
105 int lines = 0; local
109 if (++lines > 1)
115 return lines;
  /src/external/bsd/atf/dist/tools/
ui.cpp 150 std::vector< std::string > lines = tools::text::split(text, "\n"); local
151 for (std::vector< std::string >::const_iterator iter = lines.begin();
152 iter != lines.end(); iter++) {
155 formatted += format_paragraph(line, tag, iter == lines.begin(),
157 if (iter + 1 != lines.end()) {
  /src/external/bsd/kyua-cli/dist/utils/cmdline/
ui.cpp 165 const std::vector< std::string > lines = text::refill( local
167 for (std::vector< std::string >::const_iterator iter = lines.begin();
168 iter != lines.end(); iter++)
184 /// text of all lines to match the width of the tag on the first line.
191 const std::vector< std::string > lines = text::refill( local
193 for (std::vector< std::string >::const_iterator iter = lines.begin();
194 iter != lines.end(); iter++) {
195 if (repeat || iter == lines.begin())
211 /// \param prefix Text to prepend to all the lines of the output table.
224 const std::vector< std::string > lines = formatter.format(table) local
    [all...]
  /src/external/bsd/less/dist/
ttyin.c 146 * Get the number of lines to scroll when mouse wheel is moved.
150 int lines = 1; local
152 if (SystemParametersInfo(SPI_GETWHEELSCROLLLINES, 0, &lines, 0))
154 if (lines == WHEEL_PAGESCROLL)
155 lines = 3;
158 return lines;
  /src/external/bsd/mdocml/dist/
chars.c 46 static struct ln lines[] = { variable in typeref:struct:ln
54 /* Lines. */
151 /* Arrows and lines. */
446 for (i = 0; i < sizeof(lines)/sizeof(lines[0]); i++) {
447 slot = ohash_qlookup(&mchars, lines[i].roffcode);
449 ohash_insert(&mchars, slot, lines + i);
503 for (i = 0; i < sizeof(lines)/sizeof(lines[0]); i++)
504 if (uc == lines[i].unicode
    [all...]
  /src/games/ching/printching/
printching.c 68 int lines; /* encoded value of lines */ member in struct:__anon94
104 char *hexptr; /* pointer to string of lines */
105 char hexstr[6+1]; /* buffer for reading lines in */
146 if (table[i].lines == lower)
148 if (table[i].lines == upper)
156 * represent the lines. 7 is a solid (yang) line, 8 is a broken (yin) line.
187 * Compute the changes based on moving lines; return 1 if any lines moved,
188 * 0 if no lines moved
    [all...]
  /src/usr.bin/shuffle/
shuffle.c 102 * Return an array of lines read from input
110 char **lines = emalloc(sizeof(char *) * maxlines); local
121 lines[nlines] = emalloc(size + 1);
122 (void)memcpy(lines[nlines], line, size);
123 lines[nlines++][size] = '\0';
126 lines = erealloc(lines, (sizeof(char *) * maxlines));
129 lines[nlines] = NULL;
131 *linesp = lines;
164 char **lines = NULL local
    [all...]

Completed in 25 milliseconds

1 2 3 4 5 6 7