Searched refs:before (Results 1 - 16 of 16) sorted by relevance

/ast/src/lib/libtksh/tcl/
H A DtclUnixNotfy.c78 * before it invokes select.
255 * that this procedure should block before
339 Tcl_Time before, after;
348 TclpGetTime(&before);
349 after = before;
357 delay.tv_sec = after.sec - before.sec;
358 delay.tv_usec = after.usec - before.usec;
365 * Special note: must convert delay.tv_sec to int before comparing
375 TclpGetTime(&before);
333 Tcl_Time before, after; local
/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/libcmd/
H A Dchgrp.c52 "[b:before?Only change files with \bctime\b before (less than) the "
237 unsigned long before; local
246 before = ~0;
272 before = st.st_mtime;
423 if ((unsigned long)ent->fts_statp->st_ctime >= before)
/ast/src/lib/libpp/
H A Dppop.c357 * NOTE: PP_INIT must be done before the first pplex() call
394 goto before;
488 goto before;
628 goto before;
1228 goto before;
1241 goto before;
1298 goto before;
1346 goto before;
1443 goto before;
1540 goto before;
[all...]
/ast/src/cmd/kshlib/cmdtst/
H A Dgrep.c58 "matched lines are printed.]:?[before[,after]]:=2,2]"
186 int before; /* # lines to list before match */ member in struct:State_s
322 if (state->number || state->before || state->after)
714 state.before = (int)strtol(opt_info.arg, &s, 0);
715 state.after = (*s == ',') ? (int)strtol(s + 1, &s, 0) : state.before;
720 state.before = state.after = 2;
/ast/src/cmd/re/
H A Dgrep.c51 " [before[,after]]:=2,2]"
162 int before; /* # lines to list before match */ member in struct:State_s
225 if (state.number || state.before || state.after || !regrecord(&x->re))
672 state.before = (int)strtol(opt_info.arg, &s, 0);
673 state.after = (*s == ',') ? (int)strtol(s + 1, &s, 0) : state.before;
678 state.before = state.after = 2;
/ast/src/lib/libtk/generic/
H A DtkBind.c566 char *before, XEvent *eventPtr, KeySym keySym,
1216 * invalid and put the new event on top of the event before that
1615 * Note: it's important for the keysym check to go before
1617 * keys before choking on the modifier check.
1794 * the physicals are examined before the virtuals. This order
1837 ExpandPercents(winPtr, before, eventPtr, keySym, dsPtr)
1840 char *before; /* Command containing percent expressions
1867 for (string = before; (*string != 0) && (*string != '%'); string++) {
1870 if (string != before) {
1871 Tcl_DStringAppend(dsPtr, before, strin
[all...]
/ast/src/lib/libtk/library/demos/
H A Drolodex48 pack .menu -before .frame -side top -fill x
H A Dtext.tcl43 selection by dragging the mouse before releasing the mouse button.
/ast/src/cmd/nmake/
H A Dscan.c96 Action_t* before; /* do this before scanexec */ member in struct:Scan_s
515 ss->before = newof(0, Action_t, 1, 0);
516 scanaction(ss->before, s);
1120 error(1, "%s : %s: implicit reference before action completed", sfstruse(internal.tmp), unbound(u));
1822 s->prereqs = scanexec(fd, r, ss, ss->before ? scanmatch(NiL, ss->before, r, null, null, 0, 1) : (List_t*)0);
H A Ddump.c175 sfputr(sp, "before", ' ');
359 sfputr(sp, internal.before->name, ' ');
H A Drule.c929 if (a == internal.before) return n & P_before;
1470 ATTR(before, ".BEFORE", P_before);
H A Dmake.h288 #define P_before (1<<5) /* make before parent update */
335 #define D_hasbefore (1<<10) /* rule has before prereqs */
387 #define V_functional (1<<2) /* make rule name before access */
537 Rule_t* before; /* .BEFORE rule pointer */ member in struct:Internal_s
685 char* compinit; /* made before makefile compiled*/
686 char* done; /* made just before exit */
687 char* init; /* made before first user target*/
691 char* makeinit; /* made after before init */
692 char* makeprompt; /* made just before each prompt */
693 char* makerun; /* made just before eac
[all...]
H A DMakerules.mk887 * before any -l bindings -- needed because the package lib is
950 /* req must be seen at or before the lib */
4023 * .SOURCE.mk gets bound long before the first user makefile is read
4025 * before the internal defaults set in the initdynamic[] script
/ast/src/cmd/ksh93/sh/
H A Dxec.c101 * to use a pipe and to wait for the pipe to close before restoring to a
2580 struct tms before,after; local
2610 times(&before);
2612 bt = times(&before);
2626 before.tms_utime = before.tms_cutime = 0;
2627 before.tms_stime = before.tms_cstime = 0;
2651 tm[1] = after.tms_utime - before.tms_utime;
2652 tm[1] += after.tms_cutime - before
[all...]
H A Dpath.c405 * if last is given, all paths that come before <last> are skipped
1357 static clock_t before; variable
1387 before = times(&buffer);
1408 sabuf.ac_etime = compress( (time_t)(after-before));

Completed in 71 milliseconds