Searched refs:line (Results 376 - 400 of 1629) sorted by relevance

<<11121314151617181920>>

/freebsd-10-stable/contrib/binutils/libiberty/
H A Dgather-docs33 # at the next @def* (which begins a new entry) or, for C files, a line
66 $line = 0;
69 $line ++;
84 $src_line{$key} = $line;
/freebsd-10-stable/contrib/gcclibs/libiberty/
H A Dgather-docs33 # at the next @def* (which begins a new entry) or, for C files, a line
66 $line = 0;
69 $line ++;
84 $src_line{$key} = $line;
/freebsd-10-stable/contrib/ipfilter/
H A Dmkfilters64 while (defined($line = <NETSTAT>))
66 if ($line =~ m/^Name/)
70 elsif ($line =~ m/^(\S+)/)
/freebsd-10-stable/contrib/libreadline/examples/
H A Drlptytest.c96 rlctx_send_user_command(char *line) argument
99 if ( line == NULL )
102 if (strcmp (line, "exit") == 0) {
111 if ( line && *line != '\0' )
112 add_history(line);
/freebsd-10-stable/contrib/llvm/tools/lldb/source/API/
H A DSBCompileUnit.cpp103 SBCompileUnit::FindLineEntryIndex (uint32_t start_idx, uint32_t line, SBFileSpec *inline_file_spec) const argument
106 return FindLineEntryIndex (start_idx, line, inline_file_spec, exact);
110 SBCompileUnit::FindLineEntryIndex (uint32_t start_idx, uint32_t line, SBFileSpec *inline_file_spec, bool exact) const argument
125 line,
136 log->Printf ("SBCompileUnit(%p)::FindLineEntryIndex (start_idx=%u, line=%u, SBFileSpec(%p)) => NOT FOUND",
137 m_opaque_ptr, start_idx, line, inline_file_spec ? inline_file_spec->get() : NULL);
141 log->Printf ("SBCompileUnit(%p)::FindLineEntryIndex (start_idx=%u, line=%u, SBFileSpec(%p)) => %u",
142 m_opaque_ptr, start_idx, line, inline_file_spec ? inline_file_spec->get() : NULL, index);
H A DSBDeclaration.cpp98 uint32_t line = 0; local
100 line = m_opaque_ap->GetLine();
103 log->Printf ("SBLineEntry(%p)::GetLine () => %u", m_opaque_ap.get(), line);
105 return line;
126 SBDeclaration::SetLine (uint32_t line) argument
128 ref().SetLine(line);
/freebsd-10-stable/contrib/mdocml/
H A Dmdoc_argv.c275 * Parse an argument from line text. This comes in the form of -key
280 mdoc_argv(struct mdoc *m, int line, enum mdoct tok, argument
308 * to restore the line as-is. So keep around the stray byte,
322 tmp.line = line;
347 if ( ! argv_single(m, line, &tmp, pos, buf))
351 if ( ! argv_multi(m, line, &tmp, pos, buf))
355 if ( ! argv_opt_single(m, line, &tmp, pos, buf))
416 mdoc_zargs(struct mdoc *m, int line, int *pos, char *buf, char **v) argument
419 return(args(m, line, po
423 mdoc_args(struct mdoc *m, int line, int *pos, char *buf, enum mdoct tok, char **v) argument
452 args(struct mdoc *m, int line, int *pos, char *buf, enum argsflag fl, char **v) argument
646 argv_multi(struct mdoc *m, int line, struct mdoc_argv *v, int *pos, char *buf) argument
672 argv_opt_single(struct mdoc *m, int line, struct mdoc_argv *v, int *pos, char *buf) argument
695 argv_single(struct mdoc *m, int line, struct mdoc_argv *v, int *pos, char *buf) argument
[all...]
H A Dlibmdoc.h31 #define MDOC_NEWLINE (1 << 3) /* first macro/text in a line */
47 int line, \
65 ARGS_EOLN, /* end-of-line */
76 ARGV_EOLN, /* end of line */
105 mandoc_msg((t), (m)->parse, (n)->line, (n)->pos, NULL)
116 int mdoc_endbody_alloc(struct mdoc *m, int line, int pos,
/freebsd-10-stable/contrib/ncurses/ncurses/tty/
H A Dhardscroll.c48 old screen (curscr) into a new screen (newscr) via vertical line moves.
50 Because the screen has a `grain' (there are insert/delete/scroll line
52 break the update algorithm into two pieces: a first stage that does only line
55 ncurses) that does only line transformations.
57 The common case we want hardware scrolling for is to handle line insertions
63 Now, to a discussion of the line-move computation.
67 Let a new line introduced by insertion, scrolling, or at the bottom of
68 the screen following a line delete be given the index -1.
71 the following possible line-oriented operations on the screen:
73 Insertion: inserts a line a
291 char line[BUFSIZ], *st; local
[all...]
/freebsd-10-stable/contrib/netbsd-tests/lib/libpthread/
H A Dh_resolv.c77 char *line; local
81 while ((line = fgetln(fp, &len)) != NULL) {
82 char c = line[len];
84 line[len] = '\0';
85 for (ptr = strtok(line, WS); ptr; ptr = strtok(NULL, WS))
87 line[len] = c;
/freebsd-10-stable/crypto/openssl/apps/
H A DCA.sh38 while read line; do
40 echo $line|grep "^-----END.*$bound" 2>/dev/null 1>/dev/null
42 echo $line >>$outfile
45 echo $line >>$outfile
49 echo $line|grep "^-----BEGIN.*$bound" 2>/dev/null 1>/dev/null
51 echo $line >$outfile
/freebsd-10-stable/libexec/rbootd/
H A Dparseconf.c87 char line[C_LINELEN]; local
123 * For each line, parse it into a new CLIENT struct.
125 while (fgets(line, C_LINELEN, fp) != NULL) {
126 linecnt++; /* line counter */
128 if (*line == '\0' || *line == '#') /* ignore comment */
131 if ((cp = strchr(line,'#')) != NULL) /* trash comments */
134 cp = line; /* init `cp' */
144 "ParseConfig: line %d: can't parse <%s>",
172 syslog(LOG_ERR, "ParseConfig: line
[all...]
/freebsd-10-stable/usr.bin/tip/tip/
H A Dtipout.c80 char c, line[256]; local
81 char *pline = line;
85 while (c != '\n' && (size_t)(pline - line) < sizeof(line)) {
92 if (pline == line) {
96 if ((fscript = fopen(line, "a")) == NULL)
/freebsd-10-stable/contrib/ntp/sntp/unity/auto/
H A Dunity_test_summary.py31 lines = list(map(lambda line: line.rstrip(), open(result_file, "r").read().split('\n')))
87 for line in lines:
88 parts = line.split(':')
93 line_out = "%s%s" % (self.root, line)
95 line_out = line
/freebsd-10-stable/contrib/texinfo/info/
H A Dwindow.c78 here, and it must be at least 1 line for display. The size of the
558 /* Toggle the state of line wrapping in WINDOW. This can do a bit of fancy
583 to speed up the display. Many of the line starts will be the same,
785 /* Calculate a list of line starts for the node belonging to WINDOW. The line
803 /* Grovel the node starting at the top, and for each line calculate the
804 width of the characters appearing in that line. Add each line start
812 char *line = node->contents + i;
815 add_pointer_to_array (line, line_starts_inde
811 char *line = node->contents + i; local
918 register int line = 0; local
1013 char *line; local
1048 window_chars_to_goal(char *line, int goal) argument
[all...]
/freebsd-10-stable/contrib/texinfo/makeinfo/
H A Dcmds.c405 /* Force a line break in the output. */
606 char *line;
607 get_rest_of_line (0, &line);
609 if (strlen (line) > 0)
633 for (i = 0; i < strlen (line); i++)
634 if (line[i] != '-' || (i && line[i-1] != '-'))
635 add_char (line[i]);
648 free (line);
1397 /* Ignore argument on rest of line
605 char *line; local
1407 char *line; local
1459 char *line; local
1495 char *line; local
1505 char *line; local
1614 char *line; local
[all...]
/freebsd-10-stable/contrib/sendmail/include/sm/
H A Dstring.h48 sm_strdup_tagged_x __P((const char *str, char *file, int line, int group));
58 # define sm_strdup_tagged_x(str, file, line, group) \
59 strcpy(sm_malloc_tagged_x(strlen(str) + 1, file, line, group), str)
/freebsd-10-stable/bin/sh/tests/parser/
H A DMakefile58 FILES+= line-cont1.0
59 FILES+= line-cont2.0
60 FILES+= line-cont3.0
/freebsd-10-stable/contrib/gdb/gdb/
H A Dp-exp.c131 #line 46 "p-exp.y"
225 #line 130 "p-exp.y"
258 #line 154 "p-exp.y"
466 /* YYRLINE[YYN] -- source line where rule number YYN was defined. */
843 YYFPRINTF (stderr, "Reducing stack by rule %d (line %u), ",
1295 Otherwise, the following line sets YYVAL to garbage.
1307 #line 234 "p-exp.y"
1314 #line 237 "p-exp.y"
1319 #line 246 "p-exp.y"
1327 #line 25
[all...]
H A Dtop.h26 extern char *line;
/freebsd-10-stable/contrib/binutils/gas/
H A Ddwarf2dbg.h33 unsigned int line; member in struct:dwarf2_line_info
45 the file number, LINENO the line number and the (optional) COLUMN
61 /* A hook to allow the target backend to inform the line number state
H A Dmacro.h68 unsigned int line; /* Line number of definition. */ member in struct:macro_struct
/freebsd-10-stable/contrib/gcc/
H A Dgengtype.h25 int line; member in struct:fileloc
63 struct fileloc line; member in struct:pair
87 struct fileloc line; member in struct:type::__anon1145::__anon1146
101 struct fileloc line; member in struct:type::__anon1145::__anon1148
/freebsd-10-stable/contrib/gcclibs/libcpp/include/
H A Dcpp-id-data.h55 /* Definition line number. */
56 source_location line; local
/freebsd-10-stable/contrib/gdb/gdb/mi/
H A Dmi-cmd-file.c29 /* Return to the client the absolute path and line number of the
43 /* Set the default file and line, also get them */
61 /* Print to the user the line, filename and fullname */
62 ui_out_field_int (uiout, "line", st.line);

Completed in 299 milliseconds

<<11121314151617181920>>