/ast/src/cmd/codexlib/zip/ |
H A D | zip.c | 10 #define ID(a,b) (((a)<<8)|(b)) macro 25 switch (ID(method[0], method[1])) 27 case ID('0',0): 28 case ID('c','o'): 31 case ID('1',0): 32 case ID('s','h'): 35 case ID('2',0): 36 case ID('3',0): 37 case ID('4',0): 38 case ID(' [all...] |
/ast/src/cmd/nmake/ |
H A D | mkservice.mk | 10 local I ID 11 ID := $(%:O=1) macro 14 print $(ID) done $(I) 17 .NOTIFY.$(ID) : .MAKE .VIRTUAL .FORCE .REPEAT .AFTER 18 print $(ID) done $$(<<) 20 $(I) : .NOTIFY.$(ID)
|
H A D | Makefile | 7 ID = make macro 19 RULESDIR = $(LIBDIR)/$(ID) 21 IDNAME == "$(ID)" 22 PATHCHECK == "$(ID)" 23 STAMP == "\n@(#)\$Id: $(ID) ($(OWNER)) $(VERSION:?$$(VERSION) ??)$(RELEASE:?$$(RELEASE) ??)$(DATE) \$\0\n"
|
H A D | Scanrules.mk | 11 .SCANRULES.ID. = "@(#)$Id: Scanrules (AT&T Research) 2010-07-22 $"
|
/ast/src/lib/libpp/ |
H A D | gentab.sh | 37 typeset -u ID 180 ksh) ID=${1#[!abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ_]} ;; 181 *) ID=`echo $1 | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ | sed 's/^[^ABCDEFGHIJKLMNOPQRSTUVWXYZ_]//'` ;; 190 echo "#define $prefix$ID (1$long<<$counter)" 195 then echo "#define $prefix$ID $counter" 198 then echo " \"$1\", $prefix$ID," 203 then echo "#define $prefix$ID $counter"
|
H A D | Makefile | 9 ID = pp macro 13 IDNAME = "$(ID)" 15 $(ID) 2.0 :LIBRARY: BUGS NOTES RELEASE HISTORY pp.3 \ 48 C $(ID) :PROBE: pp.probe pp.def pp.key ppsym probe.ini
|
/ast/src/lib/libcs/ |
H A D | Makefile | 9 ID = cs macro 19 $(ID) 3.0 :LIBRARY: RELEASE cs.3 \ 37 $(LIBDIR)/$(ID) :INSTALLDIR: genlocal genshare 39 $(SHAREDIR)/lib/$(ID) :INSTALLDIR: local.ast genlocal genshare 41 $(SHAREDIR)/lib/$(ID)/tcp :INSTALLDIR: mode=+rwxt 43 $(SHAREDIR)/lib/$(ID)/udp :INSTALLDIR: mode=+rwxt 60 echo "#!!! 1 to update this file: $INSTALLROOT/lib/$(ID)/$(*:O=1) -d $(*:O=3) -r $rsh > $(<) !!!" 68 echo "#!!! 1 to update this file: $INSTALLROOT/lib/$(ID)/$(*:O=1) -r $rsh > $(<) !!!" 72 $(LIBDIR)/$(ID) :INSTALLDIR: share 77 $(SHAREDIR)/lib/$(ID) [all...] |
/ast/src/cmd/tw/ |
H A D | expr.c | 67 EXID("args", ID, F_args, INTEGER, 0), 68 EXID("atime", ID, F_atime, T_DATE, 0), 69 EXID("blksize", ID, F_blksize, INTEGER, 0), 70 EXID("blocks", ID, F_blocks, INTEGER, 0), 71 EXID("checksum",ID, F_checksum, STRING, 0), 74 EXID("ctime", ID, F_ctime, T_DATE, 0), 76 EXID("dev", ID, F_dev, INTEGER, 0), 77 EXID("fstype", ID, F_fstype, STRING, 0), 78 EXID("gid", ID, F_gid, T_GID, 0), 80 EXID("gidok", ID, F_gido [all...] |
H A D | tw.c | 636 case ID: 907 case ID: 966 state.sortkey->op = ID;
|
/ast/src/lib/libz/ |
H A D | Makefile | 9 ID = z macro 14 $(ID) $(VERSION) :LIBRARY: zlib.3 zlib.h zconf.h zutil.h \
|
/ast/src/lib/libast/ |
H A D | Makefile | 9 ID = ast macro 43 $(ID)_api.h $(ID)_botch.h $(ID)_ccode.h $(ID)_fcntl.h $(ID)_float.h \ 44 $(ID)_fs.h $(ID)_lib.h $(ID)_map.h $(ID)_mma [all...] |
/ast/src/lib/libexpr/ |
H A D | Oexparse.h | 55 #define ID 280 macro
|
H A D | exparse.y | 74 %token ID 132 %type <id> ID LABEL NAME 275 if ($3->op == ID && $$->data.generate.index->type != INTEGER) 823 | STRING '.' ID 838 if ($1->op == ID && !expr.program->disc->setf) 924 variable : reference ID index 926 $$ = exnewnode(expr.program, ID, 0, $2->type, NiL, NiL); 948 $$ = exnewnode(expr.program, ID, 0, 0, NiL, NiL); 1030 $$ = exnewnode(expr.program, ID, 0, $3->type, NiL, NiL); 1043 | reference ID inde [all...] |
H A D | exgram.h | 106 case ID: 193 if (xref && xref->op == ID) 351 x = exnewnode(expr.program, ID, 0, 0, NiL, NiL); 556 x->arg = exnewnode(expr.program, x->arg->type == STRING ? S2F : INTEGRAL(x->arg->type) ? I2F : X2F, 0, FLOATING, x->arg, x->arg->op == ID ? x->arg : (Exnode_t*)0); 561 x->arg = exnewnode(expr.program, x->arg->type == STRING ? S2I : x->arg->type == FLOATING ? F2I : X2I, 0, INTEGER, x->arg, x->arg->op == ID ? x->arg : (Exnode_t*)0); 573 else if (!expr.program->disc->convertf || x->arg->op != ID && x->arg->op != DYNAMIC && x->arg->op != F2X && x->arg->op != I2X && x->arg->op != S2X) 576 x->arg = exnewnode(expr.program, x->arg->type == FLOATING ? F2S : INTEGRAL(x->arg->type) ? I2S : X2S, 0, STRING, x->arg, x->arg->op == ID ? x->arg : (Exnode_t*)0);
|
H A D | extoken.c | 89 case ID: 90 s = " ID "; 433 case ID:
|
H A D | Oexparse.c | 96 #define ID 280 macro 625 "ELSE","EXIT","FOR","FUNCTION","ITERATE","ID","IF","LABEL","MEMBER","NAME", 707 "expr : STRING '.' ID", 724 "variable : reference ID index", 743 "reference : reference ID index '.'", 1108 if (exvsp[-2].expr->op == ID && exval.expr->data.generate.index->type != INTEGER) 1760 if (exvsp[-1].expr->op == ID && !expr.program->disc->setf) 1854 exval.expr = exnewnode(expr.program, ID, 0, exvsp[-1].id->type, NiL, NiL); 1880 exval.expr = exnewnode(expr.program, ID, 0, 0, NiL, NiL); 1977 exval.expr = exnewnode(expr.program, ID, [all...] |
/ast/src/lib/libjcl/ |
H A D | parse.c | 37 #define ID(c) (isalnum(c)||(c)=='_'||(c)=='$'||(c)=='@'||(c)=='#') macro 187 if (!ID(*t)) 192 else if (ID(c)) 349 for (f = s; ID(*s); s++); 646 if (*(s - 2) == 'P' && *(s - 3) == 'M' && *(s - 4) == 'A' && !ID(*(s - 5)) || 647 *(s - 2) == 'H' && *(s - 3) == 'T' && *(s - 4) == 'A' && *(s - 5) == 'P' && !ID(*(s - 6)) || 648 *(s - 2) == 'S' && *(s - 3) == 'Y' && *(s - 4) == 'S' && *(s - 5) == 'B' && *(s - 6) == 'U' && *(s - 7) == 'T' && !ID(*(s - 8))) 652 if (*(s - 2) == 'T' && *(s - 3) == 'C' && *(s - 4) == 'C' && *(s - 5) == 'A' && !ID(*(s - 6)) || 653 *(s - 2) == 'M' && *(s - 3) == 'R' && *(s - 4) == 'A' && *(s - 5) == 'P' && !ID(*(s - 6))) 683 else if (!ID(* [all...] |
/ast/src/cmd/3d/ |
H A D | Makefile | 13 ID = 3d macro 24 IDNAME == "$(ID)" 25 PATHCHECK == "$(ID)" 36 $(ID)$(VARIANTID) $(VERSION) id=$(ID) :LIBRARY: README RELEASE PROMO.mm \
|
/ast/src/lib/libast/misc/ |
H A D | optget.c | 181 #define ID ast.id macro 198 if (cat != (const char*)ID && D(msg)) 199 cat = (const char*)ID; 205 static char ID[] = "ast"; variable 718 x = T(NiL, ID, t); 1116 p->catalog = ID; 1630 o = T(NiL, ID, "options"); 1642 sfprintf(sp, "%*.*s%s%s%s[%s%s%s]", OPT_USAGE - 1, OPT_USAGE - 1, T(NiL, ID, "Or:"), b, a, b, b, o, b); 1908 par = item(sp, w, about, level, style, ip, version, id, ID, hflags); 1990 sfprintf(sp, "[%-.*s %s] ", conformlen, conform, T(NiL, ID, "conformanc [all...] |
/ast/src/cmd/INIT/ |
H A D | Makefile | 5 ID = ast macro 8 :PACKAGE: license=$(ID) 284 $(INCLUDEDIR)/$(ID) :INSTALLDIR: prototyped.h
|
H A D | CONVERT.mk | 90 .CONVERT.ID. = "@(#)$Id: CONVERT (AT&T Research) 2004-03-19 $"
|
/ast/src/lib/libtksh/ |
H A D | Makefile | 3 ID = tksh macro 9 LIB_DIR == "lib/$(ID)$(TCL_VERSION)" 10 TKSH_LIBRARY == "$(LIBDIR)/$(ID)$(TCL_VERSION)" 39 $(LIBDIR)/$(ID)$(TCL_VERSION):INSTALLDIR: \
|
/ast/src/lib/libtk/ |
H A D | Makefile | 3 ID = tk macro 8 LIB_DIR == "lib/$(ID)$(TK_VERSION)" 45 /* Generated with: ksh gen library '/$(ID)$(TK_VERSION)' */ 47 $(LIBDIR)/$(ID)$(TK_VERSION):INSTALLDIR: \ 76 $(LIBDIR)/$(ID)$(TK_VERSION)/demos:INSTALLDIR: \ 125 $(LIBDIR)/$(ID)$(TK_VERSION)/demos/images:INSTALLDIR: \
|
/ast/src/cmd/pax/ |
H A D | pax.h | 59 #define ID "PAX" macro 62 #define IMPLEMENTATION VENDOR ID VERSION 145 #define IDLEN (sizeof(ID)-1) /* strlen(ID) */
|
H A D | pax-slt.c | 230 if (strneq(slt->buf, "UVL1", 4) && strneq(slt->buf + 5, ID, IDLEN)) 648 sfsprintf(slt->buf, sizeof(slt->buf), "UVL1 %-6.6s%c%-6.6s%010ld%010ld ", ID, ap->delta->compress ? TYPE_COMPRESS : TYPE_DELTA, ((Compress_format_t*)ap->delta->format)->variant, state.operation == OUT ? (long)ap->size : (long)0, state.operation == OUT ? ap->checksum : 0L);
|