| /src/external/bsd/flex/dist/tests/ |
| bison_nr_parser.y | 70 line 71 | file line 74 line: label 82 yyerror("Parse failed: Line numbers do not match."); 86 /* Recreate the line to stdout. */
|
| bison_yylloc_parser.y | 71 line 72 | file line 75 line: label 83 yyerror(0, 0, "Parse failed: Line numbers do not match."); 87 /* Recreate the line to stdout. */
|
| header_r_main.c | 54 int line; local 55 line = testget_lineno(scanner); 61 if ( !text || line < 0)
|
| top_main.c | 54 int line; local 55 line = testget_lineno(scanner); 61 if ( !text || line < 0)
|
| /src/distrib/notes/common/ |
| extract-contrib-string.pl | 90 print "XXX $fn line $.: $msg\n" 121 line: label 129 last line; 178 last line; 287 $key =~ s/\n/ /g; # ignore difference in line breaks 313 last line;
|
| /src/tests/lib/libc/stdio/ |
| h_testnumbers.c | 8 char line[1024]; local 10 while (fgets(line, sizeof(line), stdin) != NULL) { 11 if ((size_t)atoi(line) != i) 12 errx(EXIT_FAILURE, "bad line \"%s\", expected %zu\n", 13 line, i);
|
| /src/tests/usr.bin/nbperf/ |
| hash_driver.c | 42 char *line = NULL; local 46 while ((len = getline(&line, &buflen, stdin)) > 0) { 47 if (len && line[len - 1] == '\n') 49 printf("%" PRId32 "\n", hash(line, len)); 51 free(line);
|
| /src/external/bsd/byacc/dist/test/ |
| btyacc_calc1.y | 53 | lines line '\n' [YYVALID;] 60 line : dexp label
|
| calc1.y | 32 %start line 55 | lines line 58 line : dexp '\n' label
|
| varsyntax_calc1.y | 33 %start line 57 | lines line 60 line : dexp '\n' label
|
| /src/external/bsd/flex/dist/examples/manual/ |
| expr.y | 29 | input line 32 line : EOL label
|
| /src/external/bsd/mdocml/dist/ |
| test-getline.c | 8 char *line = NULL; local 12 return getline(&line, &linesz, stdin) != -1;
|
| /src/external/gpl3/gdb.old/dist/gdb/ |
| macroscope.h | 32 #inclusion), and a line number in that file. */ 35 int line; member in struct:macro_scope 40 and line given in SAL. If we have no macro information for that
|
| /src/sys/modules/examples/readhappy_mpsafe/ |
| test_readhappy.c | 52 int line; local 55 fscanf(fp, "%d", &line); 56 printf("%d\n", line);
|
| /src/external/bsd/lutok/dist/examples/ |
| interpreter.cpp | 30 /// Implementation of a basic command-line Lua interpreter. 44 /// \param line The textual statement provided by the user. 46 run_statement(lutok::state& state, const std::string& line) 53 lutok::do_string(state, line); 76 std::string line; local 77 if (!std::getline(std::cin, line).good()) 79 run_statement(state, line);
|
| /src/external/gpl3/gdb/dist/gdb/ |
| macroscope.h | 32 #inclusion), and a line number in that file. */ 35 int line = 0; member in struct:macro_scope 46 and line given in SAL. If we have no macro information for that
|
| /src/tests/usr.bin/indent/ |
| opt_v.c | 59 /* $ XXX: If they are broken, -nv does NOT output 'Line broken'. */ 68 * the line numbers were counted wrong. 72 int line = 1; 73 int line = 2; 74 int line = 3; 76 int line = 5; variable
|
| /src/usr.sbin/gspa/gspa/ |
| gsp_gram.y | 66 %start line 75 line : label ID operands { statement($2, $3); } label
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-c-test/ |
| helpers.c | 21 char line[MAX_LINE_LEN]; local 24 while (fgets(line, sizeof(line), stdin)) { 27 if (line[0] == ';' || line[0] == '\n') 31 tokbuf[c] = strtok(c ? NULL : line, " \n");
|
| /src/external/bsd/kyua-cli/dist/cli/ |
| cmd_about.cpp | 78 std::string line; local 79 while (std::getline(input, line).good()) 80 ui->out(line); 100 /// \param cmdline Representation of the command line to the subcommand.
|
| /src/external/bsd/kyua-cli/dist/utils/logging/ |
| macros_test.cpp | 55 std::string line; local 56 ATF_REQUIRE(std::getline(input, line).good()); 57 ATF_REQUIRE_MATCH("20110221-183000 D .*: Debug message", line); 71 std::string line; local 72 ATF_REQUIRE(std::getline(input, line).good()); 73 ATF_REQUIRE_MATCH("20110221-183000 E .*: Error message", line); 87 std::string line; local 88 ATF_REQUIRE(std::getline(input, line).good()); 89 ATF_REQUIRE_MATCH("20110221-183000 I .*: Info message", line); 103 std::string line; local [all...] |
| /src/external/bsd/openpam/dist/lib/libpam/ |
| openpam_readline.c | 57 * Read a line from a file. 63 char *line; local 67 line = NULL; 68 if (openpam_straddch(&line, &size, &len, 0) != 0) 91 if (line[len - 1] == '\\') { 92 line[--len] = '\0'; 99 if (openpam_straddch(&line, &size, &len, ch) != 0) 106 return (line); 108 FREE(line); 115 * The =openpam_readline function reads a line from a file, and returns i [all...] |
| /src/lib/libc/net/ |
| protoent.h | 43 char *line; member in struct:protoent_data
|
| /src/share/man/tools/ |
| line.c | 1 /* $NetBSD: line.c,v 1.2 1998/01/09 08:05:00 perry Exp $ */ 3 /* @(#)line.c 1.1 */ 5 This program reads a single line from the standard input 15 char line[LSIZE]; local 19 linep = line; 20 linend = line + LSIZE; 26 write (1, line, LSIZE); 27 linep = line; 31 write (1, line, linep-line); [all...] |
| /src/sys/arch/alpha/pci/ |
| pci_up1000.c | 93 int line = pa->pa_intrline; local 108 * The console places the interrupt mapping in the "line" value. 111 if (line == 0xff) { 117 if (line < 0 || line > 15) { 118 printf("%s: bad ISA IRQ (%d)\n", __func__, line); 121 if (line == 2) { 123 line = 9; 126 alpha_pci_intr_handle_init(ihp, line, 0);
|