Searched refs:EOF (Results 1 - 25 of 85) sorted by relevance

1234

/ast/src/cmd/ksh93/tests/
H A Dheredoc.sh81 cat > /dev/null <<EOF # comments should not cause core dumps
83 EOF
107 cat << EOF
108 EOF
113 cat <<- EOF'
118 EOF'
128 cat << EOF
129 EOF)' 2> /dev/null || err_exit 'here-doc cannot be terminated by )'
143 if [[ $(cat << EOF #testing
146 EOF) !
[all...]
H A Dnamespace.sh47 cat > $tmp/global/xfun <<- \EOF
52 EOF
53 cat > $tmp/local/xfun <<- \EOF
58 EOF
H A Dsignal.sh55 $SHELL 2> out2 <<- \EOF
61 EOF
285 $SHELL <<- EOF
293 EOF
353 $SHELL <<- \++EOF
362 ++EOF
368 $SHELL <<- \++EOF
378 ++EOF
383 $SHELL <<- \EOF
388 EOF
[all...]
H A Dreadcsv.sh36 cat > $tmp1 <<- \EOF
44 EOF
H A Dbasic.sh364 cat > $tmp/scriptx <<- \EOF
368 EOF
373 $SHELL 2> /dev/null <<- \EOF || err_exit 'multiline ${...} command substitution not supported'
378 EOF
379 $SHELL 2> /dev/null <<- \EOF || err_exit '${...} command substitution with side effects not supported '
386 EOF
387 $SHELL 2> /dev/null <<- \EOF || err_exit 'nested ${...} command substitution not supported'
392 EOF
393 $SHELL 2> /dev/null <<- \EOF || err_exit 'terminating } is not a reserved word with ${ command }'
396 EOF
[all...]
H A Dsubshell.sh229 foo=$($SHELL <<- ++EOF++
231 ++EOF++
236 $SHELL 2>&1 <<- \EOF
251 EOF
524 $SHELL <<- \EOF
536 EOF
542 x=$( $SHELL <<- \EOF
547 EOF
567 cat > $tmpfile <<-\EOF
569 EOF
[all...]
H A Dexit.sh70 cat > run.sh <<- "EOF"
73 EOF
H A Dfunctions.sh171 cat > $tmp/script <<- \EOF
179 EOF
407 cat > tst <<- EOF
415 EOF
459 cat > $tmp/data1 << '++EOF'
480 ++EOF
481 cat > $tmp/script << '++EOF'
746 ++EOF
848 ( $SHELL << \++EOF++
856 ++EOF
[all...]
H A Dtreemove.sh141 $SHELL <<- \EOF
155 EOF
H A Dtypes.sh322 cat <<- EOF
330 EOF
363 got=$($SHELL <<- \EOF
375 EOF)
414 { x=$( $SHELL 2> /dev/null << \++EOF++
437 ++EOF++
464 cat > A_t <<- \EOF
468 EOF
469 cat > B_t <<- \EOF
473 EOF
[all...]
H A Dnameref.sh244 [[ $($SHELL 2> /dev/null <<- '+++EOF'
256 +++EOF
260 do [[ $($SHELL 2> /dev/null <<- ++EOF++
262 ++EOF++
266 do [[ $($SHELL 2> /dev/null <<- ++EOF++
268 ++EOF++
455 { $SHELL 2> /dev/null <<- \EOF
465 EOF
496 $SHELL 2> /dev/null <<-\EOF || err_exit 'nameref to array element fails'
509 EOF
[all...]
/ast/src/cmd/ncsl/
H A Dncsl.c73 case EOF:
94 case EOF:
110 case EOF:
116 case EOF:
141 case EOF:
156 case EOF:
167 case EOF:
/ast/src/cmd/html/
H A Dhtml2db.c63 case EOF:
72 case EOF:
92 case EOF:
/ast/src/lib/libast/stdio/
H A Dungetwc.c36 if (sfungetc(f, *s++) == EOF)
/ast/src/cmd/ksh93/
H A Dmamstate.c63 while ((c = getchar()) != EOF && c != ' ' && c != '\n')
71 } while (c != EOF);
/ast/src/cmd/msgcc/
H A Dmsgcvt.c136 if ((c = sfgetc(ip)) == EOF)
142 while ((c = sfgetc(ip)) != EOF && c != ';')
222 while ((c = sfgetc(ip)) != EOF)
244 while (c != EOF && c != '>')
247 if ((c = sfnext(ip)) != EOF)
254 case EOF:
262 if (c == EOF)
302 if (c == EOF)
330 case EOF:
345 while (c != EOF
[all...]
/ast/src/lib/libpp/
H A Dppsym.c60 case EOF:
/ast/src/lib/libast/port/
H A Dastquery.c32 * -1 [qQ] or EOF
36 * if quit>=0 then [qQ] or EOF calls exit(quit)
90 case EOF:
96 case EOF:
/ast/src/cmd/pax/
H A Dnocomment.c91 case EOF:
150 case EOF:
162 case EOF:
326 case EOF:
331 case EOF:
349 case EOF:
360 case EOF:
391 case EOF:
397 case EOF:
/ast/src/lib/libast/astsa/
H A Dast.c72 if ((c = sfgetc(sp)) == EOF)
/ast/src/lib/libast/comp/
H A Dwordexp.c133 while((c=sfgetc(iop)) != EOF)
/ast/src/lib/libcodex/
H A Dcode-qp.c67 return EOF;
85 return EOF;
134 if ((d = state->xeh[c]) != EOF && (c = state->xeh[GETCHAR(state)]) != EOF)
141 case EOF:
/ast/src/lib/libtk/generic/
H A DtkImgPPM.c288 if ((putc(pixelPtr[0], f) == EOF)
289 || (putc(pixelPtr[greenOffset], f) == EOF)
290 || (putc(pixelPtr[blueOffset], f) == EOF)) {
370 } while ((c != EOF) && (c != '\n'));
377 while ((c != EOF) && !isspace(UCHAR(c))) {
/ast/src/lib/libardir/
H A Dar-local.c78 if (!(state->sp = sfpopen(NiL, cmd, "r")) || (c = sfgetc(state->sp)) == EOF || sfungetc(state->sp, c) == EOF)
/ast/src/cmd/bzip/
H A Dbzip2recover.c165 if (retVal == EOF) writeError();
178 Returns 0 or 1, or 2 to indicate EOF.
187 if ( retVal == EOF ) {
209 if (retVal == EOF) writeError();
212 if (retVal == EOF) writeError();
215 if (retVal == EOF) {

Completed in 39 milliseconds

1234