Searched refs:line (Results 26 - 50 of 3289) sorted by relevance

1234567891011>>

/macosx-10.10/bash-94.1.2/bash-3.2/builtins/
H A Dcolon.c2 #line 23 "colon.def"
4 #line 30 "colon.def"
6 #line 36 "colon.def"
8 #line 42 "colon.def"
/macosx-10.10/bash-94.1.2/bash-3.2/tests/
H A Dinput-line.sh1 echo before calling input-line.sub
2 ${THIS_SH} ./input-line.sub
3 this line for input-line.sub
4 echo finished with input-line.sub
/macosx-10.10/tcl-105/tcl_ext/expect/expect/testsuite/
H A Dexp_test.c14 char line[ARRAYSIZE]; local
17 memset (line, 0, ARRAYSIZE);
18 fgets (line, ARRAYSIZE, stdin);
19 *(line + strlen(line)-1) = '\0'; /* get rid of the newline */
22 if (strncmp (line,"prompt ", 6) == 0) {
23 printf ("%s (y or n) ?", line + 6);
29 if (strncmp (line, "print ", 6) == 0) {
30 puts (line + 6);
32 } while (strncmp (line, "qui
[all...]
/macosx-10.10/WebKit-7600.1.25/mac/Misc/
H A DOldWebAssertions.c29 void WebReportAssertionFailure(const char *file, int line, const char *function, const char *assertion);
30 void WebReportError(const char *file, int line, const char *function, const char *format, ...);
32 void WebReportAssertionFailure(const char *file, int line, const char *function, const char *assertion) argument
36 void WebReportError(const char *file, int line, const char *function, const char *format, ...) argument
/macosx-10.10/bash-94.1.2/bash-3.2/tests/misc/
H A Dredir-t2.sh3 echo read line 1 \"$line1\"
11 echo line read from tty = \"$line2\"
17 echo read line 3 \"$line3\"
/macosx-10.10/Chess-310.6/sjeng/
H A Drcfile.c30 char line[STR_BUFF]; variable
95 fgets(line, STR_BUFF, rcfile);
96 while (line[0] == '#') fgets(line, STR_BUFF, rcfile);
97 sscanf(line, "%d", &TTSize);
99 fgets(line, STR_BUFF, rcfile);
100 while (line[0] == '#') fgets(line, STR_BUFF, rcfile);
101 sscanf(line, "%d", &ECacheSize);
103 fgets(line, STR_BUF
[all...]
/macosx-10.10/ruby-106/ruby/ext/ripper/tools/
H A Dstrip.rb2 ARGF.each do |line|
3 if line.strip.empty?
6 elsif /\A\#/ === line
9 print line
/macosx-10.10/ruby-106/ruby/template/
H A Dvm.inc.tmpl15 line = 15
20 line.to_s
24 line += 1
/macosx-10.10/apache-793/httpd/build/
H A Dmake_var_export.awk22 if (old_filename != "") printf("%s", line)
27 line = ""
32 line = line "#ifdef " macro "\n"
39 line = line "#endif /* " macro " */\n"
44 printf("%s", line)
46 line = ""
56 line = line "\
[all...]
/macosx-10.10/apr-32/apr/apr/build/
H A Dmake_var_export.awk6 if (old_filename != "") printf("%s", line)
11 line = ""
16 line = line "#ifdef " macro "\n"
23 line = line "#endif /* " macro " */\n"
28 printf("%s", line)
30 line = ""
40 line = line "\
[all...]
/macosx-10.10/apache-793/httpd/support/SHA1/
H A Dconvert-sha1.pl12 while (my $line = <>) {
13 chomp $line;
14 if ( $line =~ /uid:\s*(.+)/) { $uid = $1 }
15 if ( $line =~ /userpassword:\s*(\{\w+\}.+)/) {
20 if (length($line)==0) {
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/bench/
H A Dbench_read.tcl66 # First line is number of interpreters #n. int
88 while {[gets $chan line] >= 0} {
89 set line [string trim $line]
90 if {$line == {}} break
91 set line [csv::split $line]
92 set desc [lindex $line 1]
95 foreach val [lrange $line 2 end] ip $iplist {
109 # Empty line
[all...]
/macosx-10.10/zsh-61/zsh/Src/
H A Dmakepro.awk26 # all relevant declarations are preceded by "/**/" on a line by itself
32 line = ""
39 if (line == "" && $0 ~ /^[ \t]*#/) {
40 # Directly after the /**/ was a preprocessor line.
47 line = line " " $0
48 gsub(/\/\*([^*]|\*+[^*\/])*\*+\//, " ", line)
49 if(line ~ /\/\*/)
52 if(line ~ /\) *(VA_DCL )*[{].*$/) #}
54 if(sub(/ *[{;].*$/, "", line)) #}
[all...]
/macosx-10.10/bash-94.1.2/bash-3.2/examples/scripts.noah/
H A Dshcat.bash22 local line
27 while read -r line; do
28 echo "${line}"
34 while read -r line; do
35 echo "${line}"
/macosx-10.10/zsh-61/zsh/Functions/VCS_Info/Backends/
H A DVCS_INFO_detect_svk23 while IFS= read -r line ; do
25 line=${line## ##}
26 [[ ${line} == depotpath:* ]] && vcs_comm[branch]=${line##*/}
27 [[ ${line} == revision:* ]] && vcs_comm[revision]=${line##*[[:space:]]##}
31 (( fhash > 0 )) && [[ ${line} == ' '[^[:space:]]*:* ]] && break
32 [[ ${line} == ' hash:'* ]] && fhash=1 && continue
34 [[ ${PWD}/ == ${${line## ##}
[all...]
/macosx-10.10/tcl-105/tcl_ext/trf/trf/tools/
H A Dmmencode6 # line buffer for parcel below.
7 set line ""
11 # lines of at most $max characters each. The last line is possibly shorter.
19 global line
22 set line ""
25 set line ""
28 append line $buffer
31 while {[string length $line] > $max} {
32 append res "[string range $line 0 [expr {$max-1}]]\n"
33 set line [strin
[all...]
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/contrib/ldaptcl/
H A Dldaperr.tcl8 while {[gets $fp line] != -1 &&
9 ![string match "#define LDAP_SUCCESS*" $line]} { }
13 while {[gets $fp line] != -1} {
14 if {[clength $line] == 0 || [ctype space $line]} continue
15 if {[string match *typedef* $line]} break
16 if {![string match #define* $line]} continue
17 if {![string match "#define LDAP_*" $line]} continue
18 if {[string match "*LDAP_RANGE*" $line]} continue
19 if {[string match "*LDAP_API_RESULT*" $line]} continu
[all...]
/macosx-10.10/WebKit-7600.1.25/WebKit.vcxproj/WebKitExportGenerator/
H A Dmake-export-file-generator31 def line_for_output line
32 return line.chomp if line =~ /#/
33 return " printf(\"%s\\n\",#{line.chomp});" if line =~ /symbolWithPointer/
34 return " printf(\"#{line.chomp}\\n\");"
50 <%- input.each_line do |line| -%>
51 <%= line_for_output line %>
/macosx-10.10/dtrace-147/test/tst/common/aggs/
H A Dtst.aggpackbanner.ksh20 banner $3 | awk -v line=$1 -v pos=$2 -v width=$width '{ \
25 line, NR, i + (pos * width));
33 let line=0
46 let line=line+1
51 outputchar $line $pos $c
57 while [[ $i -le $line ]]; do
/macosx-10.10/postfix-255/postfix/src/bounce/
H A Dannotate.sh25 # with a line that contains the word "EOF" only. You can change the
67 while read line; do
68 case "$line" in
119 echo "$line";
/macosx-10.10/tcl-105/tcl/tcl/tools/
H A Dfix_tommath_h.tcl22 foreach line [split $data \n] {
24 switch -regexp -- $line {
26 puts $line
38 puts [string map {long int} $line]
40 puts $line
47 puts $line
63 puts $line
69 puts [regsub {^extern} $line "MODULE_SCOPE"]
74 puts $line
79 puts "[string map {__x86_64__ NEVER} $line]\
[all...]
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/libraries/liblber/
H A Dassert.c31 ber_pvt_assert( const char *file, int line, const char *test ) argument
34 _("Assertion failed: %s, file %s, line %d\n"),
35 test, file, line);
/macosx-10.10/dcerpc-61/dcerpc/libdcethread/
H A Ddcethread_exc_raise.c85 dcethread_exc_raise(dcethread_exc* exc, const char* file, unsigned int line) argument
87 dcethread__exc_raise(exc, file, line);
/macosx-10.10/ncurses-44/ncurses/ncurses/base/
H A Dlib_scroll.c56 int line; local
71 * This used to do a line-text pointer-shuffle instead of text copies.
84 for (line = bottom; line >= limit && line >= 0; line--) {
85 TR(TRACE_MOVE, ("...copying %d to %d", line + n, line));
86 memcpy(win->_line[line].text,
87 win->_line[line
[all...]
/macosx-10.10/bind9-45.101/bind9/win32utils/
H A Dupdatelibxml2.pl147 my($filename, $substr, $line);
159 foreach $line (@Lines) {
161 $line =~ s/libxml2-[0-9]+\.[0-9]+\.[0-9]+[a-z]*/$substr/gi;
163 $line =~ s/^# (LIBXML=.*\/libxml2\.lib.*)$/\1/;
165 $line =~ s/^!MESSAGE (LIBXML=.*\/libxml2\.lib.*)$/\1/;
166 $line =~ s/^!MESSAGE (# ADD LINK32 .*\/libxml2\.lib.*)$/\1/;
168 $line =~ s/^; (isc_socketmgr_renderxml)$/\1/;
169 $line =~ s/^; (isc_mem_renderxml)$/\1/;
170 $line =~ s/^; (isc_taskmgr_renderxml)$/\1/;
173 $line
[all...]

Completed in 371 milliseconds

1234567891011>>