Searched refs:line (Results 101 - 125 of 3289) sorted by relevance

1234567891011>>

/macosx-10.10/ntp-92/lib/isc/
H A Derror.c61 isc_error_unexpected(const char *file, int line, const char *format, ...) { argument
65 (unexpected_callback)(file, line, format, args);
70 isc_error_fatal(const char *file, int line, const char *format, ...) { argument
74 (fatal_callback)(file, line, format, args);
80 isc_error_runtimecheck(const char *file, int line, const char *expression) { argument
81 isc_error_fatal(file, line, "RUNTIME_CHECK(%s) %s", expression,
87 default_unexpected_callback(const char *file, int line, const char *format, argument
90 fprintf(stderr, "%s:%d: ", file, line);
97 default_fatal_callback(const char *file, int line, const char *format, argument
100 fprintf(stderr, "%s:%d: %s: ", file, line,
[all...]
/macosx-10.10/ruby-106/ruby/sample/
H A Deval.rb0 line = ''
8 break if line.empty?
10 line += l
33 print eval(line).inspect, "\n"
38 line = ''
H A Dmpart.rb16 line = 0
27 if line == 0
33 line = line + 1
34 if line >= lines and !ifp.eof?
38 line = 0
H A Dclnt.rb17 while line = gets()
18 s.write(line)
H A Doccur2.rb4 ARGF.each_line do |line|
5 for word in line.split(/\W+/)
H A Dtsvr.rb14 while line = s.gets
15 s.write(line)
/macosx-10.10/Heimdal-398.1.2/appl/ftp/ftp/
H A Ddomacro.c59 strlcpy(line2, line, sizeof(line2));
66 cp2 = line;
71 if (line + sizeof(line) - 2 < cp2)
83 len = sizeof(line) - (cp2 - line) - 1;
94 len = sizeof(line) - (cp2 - line) - 1;
103 if (line + sizeof(line)
[all...]
/macosx-10.10/curl-83.1.2/curl/lib/
H A Dchecksrc.pl34 my ($num, $col, $file, $line, $msg, $error) = @_;
47 print " $line\n";
95 my $line = 1;
114 checkwarn($line, length($l), $file, $l, "Longer than $max_column columns");
118 checkwarn($line, length($1), $file, $l, "Contains TAB character", 1);
122 checkwarn($line, length($1), $file, $l, "Trailing whitespace");
131 checkwarn($line, length($1)+length($2), $file, $l,
142 checkwarn($line, length($1)+length($2)+1, $file, $l,
149 checkwarn($line, length($1), $file, $l, "else after closing brace on same line");
[all...]
/macosx-10.10/OpenSSL098-52/src/crypto/perlasm/
H A Dx86_64-xlate.pl22 # - can't use multiple ops per line;
79 local *line = shift;
82 if ($line =~ /^([a-z][a-z0-9]*)/i) {
85 $line = substr($line,@+[0]); $line =~ s/^\s+//;
135 local *line = shift;
138 if ($line =~ /^\$([^,]+)/) {
141 $line = substr($line,
[all...]
/macosx-10.10/cups-408/cups/man/
H A Dmantohtml.c49 main(int argc, /* I - Number of command-line args */
50 char *argv[]) /* I - Command-line arguments */
54 char line[1024], /* Line from file */ local
55 *lineptr, /* Pointer into line */
61 linenum = 0; /* Current line number */
66 const char *post = NULL; /* Text to add after the current line */
117 while (fgets(line, sizeof(line), infile))
119 size_t linelen = strlen(line); /* Length of line */
[all...]
/macosx-10.10/tcl-105/tcl_ext/memchan/memchan/tools/
H A Dchangelog_to_list3 # the next line restarts using tclsh \
26 foreach line [split $data \n] {
27 if {[cl:parse:chunk_intro $line date person]} {
33 if {[cl:parse:item_line $line data]} {
38 if {[cl:parse:item_followup $line data]} {
51 proc cl:parse:chunk_intro {line datevar personvar} {
52 if {![regexp "^\[^\t \]" $line]} {
58 if {[regexp -indices -- {^([0-9]+-[0-9-]+)} $line -> di]} {
61 regsub -all "\[ \t\]+" [string trim [string range $line $da $de]] { } d
62 regsub -all "\[ \t\]+" [string trim [string range $line [inc
[all...]
/macosx-10.10/tcl-105/tcl_ext/trf/trf/tools/
H A Dchangelog_to_list3 # the next line restarts using tclsh \
26 foreach line [split $data \n] {
27 if {[cl:parse:chunk_intro $line date person]} {
33 if {[cl:parse:item_line $line data]} {
38 if {[cl:parse:item_followup $line data]} {
51 proc cl:parse:chunk_intro {line datevar personvar} {
52 if {![regexp "^\[^\t \]" $line]} {
58 if {[regexp -indices -- {^([0-9]+-[0-9-]+)} $line -> di]} {
61 regsub -all "\[ \t\]+" [string trim [string range $line $da $de]] { } d
62 regsub -all "\[ \t\]+" [string trim [string range $line [inc
[all...]
/macosx-10.10/dcerpc-61/dcerpc/libdcethread/
H A Ddcethread-test.c85 debug_callback(const char* file, unsigned int line, int level, const char* message, void* data) argument
92 Mu_Interface_Result(file, line, MU_STATUS_FAILURE, "%s", message);
108 Mu_Interface_Event(file, line, mu_level, "%s", message);
112 uncaught_callback(dcethread_exc* exc, const char* file, unsigned int line, void* data) argument
120 Mu_Interface_Result(file, line, MU_STATUS_EXCEPTION, "exception %s thrown but not caught", name);
124 Mu_Interface_Result(file, line, MU_STATUS_EXCEPTION, "exception %i thrown but not caught", dcethread__exc_getstatus(exc));
/macosx-10.10/llvmCore-3425.0.34/utils/
H A Dtest_debuginfo.pl27 # at the beginning of a comment line.
31 my($line) = $_;
32 $i = index($line, "DEBUGGER:");
35 $s = substr($line, $i + $l);
/macosx-10.10/ruby-106/ruby/lib/irb/ext/
H A Dtracer.rb19 |event, file, line, id, binding, *rests|
40 @io.line(line_no)
55 def evaluate(context, statements, file = nil, line = nil)
56 if context.use_tracer? && file != nil && line != nil
59 __evaluate__(context, statements, file, line)
64 __evaluate__(context, statements, file || __FILE__, line || __LINE__)
/macosx-10.10/ruby-106/ruby/test/dtrace/
H A Dtest_string.rb7 saw = saw.map(&:split).find_all { |klass, file, line, len|
8 file == rbfile && len == '12' && line == '1'
11 assert_equal([rbfile], saw.map { |line| line[1] })
12 assert_equal(['1'], saw.map { |line| line[2] })
/macosx-10.10/ruby-106/ruby/tool/
H A Drubytest.rb19 `#{ruby} #{srcdir}/sample/test.rb #{ARGV.join(' ')}`.each_line do |line|
20 if line =~ /^end of test/
24 error << line if %r:^(sample/test.rb|not): =~ line
H A Dvtlh.rb3 ARGF.each{|line|
4 if /^0x([a-z0-9]+),/ =~ line
5 stat = line.split(',')
/macosx-10.10/vim-55/runtime/tools/
H A Defm_filter.pl23 if ( (/"(.*)", line (\d+): (e)rror\((\d+)\):/)
24 || (/"(.*)", line (\d+): (w)arning\((\d+)\):/) ) {
26 $line=$2;
34 print OUT "$file>$line:$column:$errortype:$errornr:$errormsg\n";
/macosx-10.10/bash-94.1.2/bash-3.2/builtins/
H A Dtest.c2 #line 23 "test.def"
4 #line 93 "test.def"
6 #line 101 "test.def"
/macosx-10.10/CPANInternal-159.1/Readonly-1.03/t/
H A Dtie.t10 my $line = shift;
12 return "Invalid tie at " . __FILE__ . " line $line\n";
/macosx-10.10/apache-793/httpd/test/
H A Dtest_find.c19 * The defines in this sample compile line are specific to Roy's system.
52 AP_DECLARE(void) ap_log_error(const char *file, int line, int level, argument
61 char line[512]; local
67 if (!gets(line))
72 printf(" [%s] == %s\n", tok, ap_find_list_item(p, line, tok)
/macosx-10.10/bash-94.1.2/bash-3.2/lib/malloc/
H A Dxleaktrace24 line[$2] = $5;
26 # printf "allocated: %s %d %d %s %d\n", $2, alloc[$2], size[$2], file[$2], line[$2];
42 printf "%s (%d) from %s:%d\n", ptr, size[ptr], file[ptr], line[ptr];
/macosx-10.10/emacs-93/
H A Dfilearch.rb7 IO.popen("/usr/bin/otool -hv #{file}", "r").grep(/MAGIC/) do |line|
8 fields = line.split(/\s+/).delete_if {|f| f.empty?}
/macosx-10.10/llvmCore-3425.0.34/lib/Support/
H A DValgrind.cpp60 void AnnotateHappensBefore(const char *file, int line, argument
62 void AnnotateHappensAfter(const char *file, int line, argument
64 void AnnotateIgnoreWritesBegin(const char *file, int line) {} argument
65 void AnnotateIgnoreWritesEnd(const char *file, int line) {} argument

Completed in 184 milliseconds

1234567891011>>