Searched refs:after (Results 1 - 24 of 24) sorted by relevance

/ast/src/lib/libtksh/tcl/
H A DtclUnixNotfy.c298 * Some systems don't clear the masks after an error, so
339 Tcl_Time before, after;
349 after = before;
350 after.sec += ms/1000;
351 after.usec += (ms%1000)*1000;
352 if (after.usec > 1000000) {
353 after.usec -= 1000000;
354 after.sec += 1;
357 delay.tv_sec = after.sec - before.sec;
358 delay.tv_usec = after
333 Tcl_Time before, after; local
[all...]
/ast/src/lib/libtksh/src/
H A Ddebug.c43 void __dprintfNum(char *before, int num, char *after) argument
45 sfprintf(outFile, "%s%d%s", before,num,after);
/ast/src/lib/libtk/library/demos/
H A Dsquare54 after 30 timer
H A Dtimer29 after 50 tick
/ast/src/cmd/pax/
H A Dtar.sh48 modifiers appear after the \aoptions\a string instead of immediately
71 [L:tape-length]:[N?Change tapes after writing N*1024 bytes.]
/ast/src/cmd/kshlib/cmdtst/
H A Dgrep.c58 "matched lines are printed.]:?[before[,after]]:=2,2]"
185 int after; /* # lines to list after match */ member in struct:State_s
322 if (state->number || state->before || state->after)
715 state.after = (*s == ',') ? (int)strtol(s + 1, &s, 0) : state.before;
720 state.before = state.after = 2;
764 error(2, "%s: invalid characters after test", s);
/ast/src/cmd/re/
H A Dgrep.c51 " [before[,after]]:=2,2]"
161 int after; /* # lines to list after match */ member in struct:State_s
225 if (state.number || state.before || state.after || !regrecord(&x->re))
673 state.after = (*s == ',') ? (int)strtol(s + 1, &s, 0) : state.before;
678 state.before = state.after = 2;
718 error(3, "%s: invalid characters after test", s);
/ast/src/cmd/nmake/
H A Dscan.c97 Action_t* after; /* do this after scanexec */ member in struct:Scan_s
413 ss->after = newof(0, Action_t, 1, 0);
414 scanaction(ss->after, s);
1846 if (ss->after)
1854 s->prereqs = scanmatch(s->prereqs, ss->after, r, null, null, 0, 1);
H A Ddump.c162 sfputr(sp, "after", ' ');
348 sfputr(sp, internal.after->name, ' ');
H A Dcommand.c37 #define AFTER 0 /* done -- making after prereqs */
38 #define BEFORE 001 /* done -- before after prereqs */
854 * with the possible exception of after prereqs
889 after:
1008 goto after;
H A Dexpand.c270 * B base after D up to but not including the last '.'
271 * S suffix after B
3693 error(1, "invalid character after substitution: %s", editcontext(eb, ed));
3747 error(1, "invalid character after conditional: %s", editcontext(eb, ed));
H A Drule.c926 if (a == internal.after) return n & P_after;
1011 * return nonzero if r has an after prerequisite with exact property
1466 ATTR(after, ".AFTER", P_after);
H A Dmake.h284 #define P_after (1<<1) /* make after parent update */
334 #define D_hasafter (1<<9) /* rule has after prereqs */
364 #define D_hasmake (1L<<28) /* rule has .MAKE after prereqs */
532 Rule_t* after; /* .AFTER rule pointer */ member in struct:Internal_s
684 char* compdone; /* made after makefile compiled */
690 char* makedone; /* made after done */
691 char* makeinit; /* made after before init */
H A Doption.c55 " with the exception that no option operand may appear after a"
129 "Continue after error with sibling prerequisites." },
291 " [+2?Non-fatal error message. Processing continues after"
294 " [+>2?Fatal error message. \bnmake\b exits after the"
1313 error(1, "%s: object file name cannot change after %s read", op->name, state.makefile);
H A Dparse.c851 * after sliding the spliced segment(s)
1003 error(1, "%s: tokens after else ignored", t);
1022 error(1, "elif after else");
1036 error(1, "%s: tokens after end ignored", t);
1792 error(2, "tokens after closing } ignored");
2721 * these are done after attributes have been assigned
H A DMakerules.mk39 set option=';archive-clean;s;-;A catenation of edit operators that selects archive member files to be removed after being added to the archive.;edit-ops'
/ast/src/cmd/tw/
H A Dfind.c58 " after the \apath\a arguments. For numeric arguments \an\a, \a+n\a"
403 "Process directories before and and after the contents are processed.",
489 "File was accessed \adays\a days after its status changed.",
957 error(1, "%s: invalid character%s after number", e, *(e + 1) ? "s" : "");
/ast/src/cmd/ksh93/sh/
H A Dio.c1144 char *tname=0, *after="", *trace = shp->st.trap[SH_DEBUGTRAP]; local
1227 after = "))";
1388 sfprintf(sfstderr,"%s %s%s%c",io_op,fname,after,iop->ionxt?' ':'\n');
1400 av[5] = after;
H A Dxec.c2580 struct tms before,after; local
2630 times(&after);
2635 at = times(&after) - bt;
2651 tm[1] = after.tms_utime - before.tms_utime;
2652 tm[1] += after.tms_cutime - before.tms_cutime;
2653 tm[2] = after.tms_stime - before.tms_stime;
2654 tm[2] += after.tms_cstime - before.tms_cstime;
3064 * Currently shell tries after 2,4,8,16, and 32 seconds and then quits
3079 * called by parent and child after fork by sh_fork()
H A Dpath.c1401 clock_t after; local
1405 after = times(&buffer);
1408 sabuf.ac_etime = compress( (time_t)(after-before));
/ast/src/cmd/ksh93/tests/
H A Dsubstring.sh216 then err_exit 'export not restored after function call'
223 then err_exit 'export not restored after recursive function call'
237 then err_exit 'zzz exported after function call'
660 [[ ${.sh.match} == bbb ]] || err_exit '.sh.match wrong after ${s/~(E)b{2,4}/dummy}'
/ast/src/lib/libast/misc/
H A Dmagic.c2078 (*mp->disc->errorf)(mp, mp->disc, 1, "invalid characters after substitution: %s", p);
/ast/lib/package/
H A Dpackage.mk623 $(test.$(style):@?To test the binaries after building/installing run:$$("\n\n\t")make test$$("\n\n")??)To build and/or install the binaries run:
/ast/src/cmd/INIT/
H A Dpackage.mk623 $(test.$(style):@?To test the binaries after building/installing run:$$("\n\n\t")make test$$("\n\n")??)To build and/or install the binaries run:

Completed in 721 milliseconds