/ast/src/cmd/nmake/ |
H A D | debug-package.mk | 25 print -f "%8s %-6s %s" $(P) "$(PACKAGE_$(P)_VERSION)" $(PACKAGE_$(P)) 26 print -f " %s" -- $(PACKAGE_$(P)_INCLUDE) 27 print -f " %s" -- $(PACKAGE_$(P)_LIB) 28 print -f " %s" -- $("-l$(P)":T=F:P=A:B:S) 30 print -f " %s" -- "$(CC.REQUIRE.$(P))" 32 print 36 print .SOURCE.$(S) 38 print -f " %s" -- $(P) 40 print
|
H A D | mkservice.mk | 14 print $(ID) done $(I) 18 print $(ID) done $$(<<)
|
H A D | Makerules.mk | 52 set option=';native-pp;np;-;Force the use of the native C preprocessor and print a \alevel\a diagnostic message noting the override.;level' 682 print -um bind -l$(B) dontcare 877 print -um bind -l$(L) 1574 print $(D:W=P=$(.RECURSE.ARGS.:A!=.ONOBJECT:N!=.RECURSE)) 1584 print $(D:/ /$("\n")/G) 3547 print ;;;$$(I:T=F:P=A);$$(BINDIR)/$$(I:B) 3554 print ;;;$$(I);$$(I) 4107 print -um setv INSTALLROOT $(T1) 4135 print -um setv INSTALLROOT $(.MAM.INSTALLROOT) 4148 print [all...] |
H A D | TABLE.mk | 93 print $(J) $(assign) $(V)
|
/ast/src/lib/libdss/ |
H A D | dsshdr.h | 34 Format_t* print;
|
H A D | dss-print.h | 23 * print query 27 "[-1ls5P?\n@(#)$Id: dss print query (AT&T Research) 2011-08-19 $\n]" 47 "[+?The default print format is \fprint\f. The \bdf\b(1), \bls\b(1), " 89 if (!(expr->data = (char*)DSS(cx)->meth->print)) 92 (*disc->errorf)(NiL, disc, 2, "%s: no default method print format", DSS(cx)->meth->name); 128 "print", \ 129 "format and print the current record", \
|
H A D | dssprintf.c | 183 for (fp = dss->print; fp && fp->oformat != (char*)format; fp = fp->next); 276 fp->next = dss->print; 277 dss->print = fp; 620 fp->next = dss->print; 621 dss->print = fp;
|
H A D | dss.h | 149 const char* print; /* default {print} format */ member in struct:Dssmeth_s
|
/ast/src/cmd/dsslib/stats/ |
H A D | stats.c | 40 "[p:print?Print summary data according to \aformat\a. The format fields" 116 Cx_t* print; member in struct:State_s 178 (*disc->errorf)(cx, disc, 2, "%s: unknown print variable", variable->name); 194 register Print_t* print = (Print_t*)((Dssrecord_t*)data)->data; local 207 r->value.number = print->total->count ? print->total->value / (Cxinteger_t)print->total->count : 0; 210 r->value.number = (Cxinteger_t)print->total->count; 213 if (print->total->count) 215 u = print [all...] |
/ast/src/lib/librecsort/ |
H A D | rskeyopen.c | 59 state.print[i] = 1; 62 state.print[i] = 1;
|
H A D | rskeyhdr.h | 86 unsigned char print[UCHAR_MAX + 1]; /* printable significant*/ member in struct:__anon369
|
H A D | rskeydump.c | 47 sfprintf(sp, "\t keep = %s\n", fp->keep == kp->state->all ? "all" : fp->keep == kp->state->print ? "print" : fp->keep == kp->state->dict ? "dict" : fp->keep ? "UNKNOWN" : "all");
|
/ast/src/cmd/3d/ |
H A D | error.c | 56 * print a name, converting unprintable chars 60 print(char** buf, char* end, register char* name, char* delim) function 133 if (file) print(&b, e, file, " "); 137 if (file) print(&b, e, file, (flags & ERROR_LIBRARY) ? " " : ": ");
|
/ast/src/cmd/re/ |
H A D | ed.c | 127 int print; member in struct:__anon200::__anon202 165 int print; member in struct:__anon200 226 ed.print = 0; 435 if ((ed.print & REG_SUB_LIST) && (t = fmtesc(s))) { 631 print(void) function 638 if (ed.print & REG_SUB_NUMBER) 643 ed.print = 0; 832 ed.print = REG_SUB_LIST; 836 ed.print = REG_SUB_NUMBER; 840 ed.print [all...] |
/ast/src/cmd/tw/ |
H A D | tw.h | 205 extern ssize_t print(Sfio_t*, Ftw_t*, const char*);
|
/ast/src/lib/libexpr/ |
H A D | exlib.h | 76 } print; /* printf */ \
|
H A D | excc.c | 113 print(Excc_t* cc, Exnode_t* expr) function 118 if (x = expr->data.print.args) 120 sfprintf(cc->ccdisc->text, "sfprintf(%s, \"%s", expr->data.print.descriptor->op == CONSTANT && expr->data.print.descriptor->data.constant.value.integer == 2 ? "sfstderr" : "sfstdout", fmtesq(x->format, quote)); 124 for (x = expr->data.print.args; x; x = x->next) 153 if (x = expr->data.print.args) 159 for (x = expr->data.print.args; x; x = x->next) 279 print(cc, expr);
|
H A D | exparse.y | 137 %type <id> BREAK CONTINUE print 762 | print '(' args ')' 767 $$->data.print.descriptor = $3->data.operand.left; 774 $$->data.print.descriptor = exnewnode(expr.program, CONSTANT, 0, INTEGER, NiL, NiL); 775 $$->data.print.descriptor->data.constant.value.integer = 2; 778 $$->data.print.descriptor = exnewnode(expr.program, CONSTANT, 0, INTEGER, NiL, NiL); 779 $$->data.print.descriptor->data.constant.value.integer = 1; 782 $$->data.print.descriptor = 0; 785 $$->data.print.args = preprint($3); 915 print label [all...] |
H A D | Oexparse.c | 705 "expr : print '(' args ')'", 719 "print : PRINTF", 720 "print : QUERY", 721 "print : SPRINTF", 1683 exval.expr->data.print.descriptor = exvsp[-1].expr->data.operand.left; 1690 exval.expr->data.print.descriptor = exnewnode(expr.program, CONSTANT, 0, INTEGER, NiL, NiL); 1691 exval.expr->data.print.descriptor->data.constant.value.integer = 2; 1694 exval.expr->data.print.descriptor = exnewnode(expr.program, CONSTANT, 0, INTEGER, NiL, NiL); 1695 exval.expr->data.print.descriptor->data.constant.value.integer = 1; 1698 exval.expr->data.print [all...] |
/ast/src/lib/libsum/ |
H A D | sumlib.c | 52 int (*print)(Sum_t*, Sfio_t*, int, size_t); member in struct:Method_s 327 * print the sum [size] on sp 333 return (*p->method->print)(p, sp, flags, scale); 358 * print the checksum method optget(3) usage on sp and return the length
|
/ast/src/cmd/ksh93/data/ |
H A D | builtins.c | 95 "echo", NV_BLTIN|BLT_ENV, bltin(print), 112 "print", NV_BLTIN|BLT_ENV, bltin(print), 1078 "[-1c?\n@(#)$Id: print (AT&T Research) 2008-11-26 $\n]" 1080 "[+NAME?print - write arguments to standard output]"
|
/ast/src/cmd/ksh93/bltins/ |
H A D | print.c | 23 * print [-nrps] [-f format] [-u filenum] [arg...] 93 struct print struct 107 struct print prdata; 147 struct print prdata; 191 struct print *pp = (struct print*)context; 215 /* print to history file */ 283 /* handle special case of '-' operand for print */ 296 /* don't print error message for stdout for compatibility */ 313 /* printf style print */ [all...] |
/ast/src/lib/libast/misc/ |
H A D | error.c | 237 * print a name with optional delimiter, converting unprintable chars 241 print(register Sfio_t* sp, register char* name, char* delim) function 298 * print error context FIFO stack 311 print(sp, cp->id, NiL); 447 print(stkstd, file, " "); 456 print(stkstd, file, (flags & ERROR_LIBRARY) ? " " : ": ");
|
/ast/src/cmd/ie/ |
H A D | emacs.c | 102 static int print(); 109 # define print(c) isprint(c) macro 271 if (c==usrerase||c==usrkill||(!print(c) && 1255 print(i)&&((cursor-screen)<(w_size-1))) 1398 static int print(c) function
|
/ast/src/cmd/ksh93/edit/ |
H A D | emacs.c | 90 static int print(int); 98 # define print(c) isprint(c) macro 284 if (c==usrerase||c==usrkill||(!print(c) && 1432 print(i)&&((ep->cursor-ep->screen)<(w_size-1))) 1564 static int print(register int c) function
|