/ast/src/lib/libjcl/ |
H A D | Makefile | 9 jcl :LIBRARY: open.c parse.c run.c sym.c path.c find.c lib.c uniq.c \
|
/ast/src/lib/libast/regex/ |
H A D | regnexec.c | 113 * returns from parse() 116 #define NONE 0 /* no parse found */ 117 #define GOOD 1 /* some parse was found */ 119 #define BEST 3 /* an unbeatable parse was found */ 397 #define follow(e,r,c,s) ((r)->next?parse(e,(r)->next,c,s):(c)?parse(e,c,0,s):BEST) 399 static int parse(Env_t*, Rex_t*, Rex_t*, unsigned char*); 446 r = parse(env, rex->re.group.expr.rex, &catcher, s); 447 DEBUG_TEST(0x0010,(sfprintf(sfstdout, "AHA#%04d 0x%04x parserep parse %d %d `%-.*s'\n", __LINE__, debug_flag, rex->re.group.number, r, env->end - s, s)),(0)); 797 parse(Env_ function [all...] |
/ast/src/cmd/nmake/ |
H A D | Makefile | 31 mam.c metarule.c misc.c object.c option.c parse.c read.c \ 36 "win32*" :NOOPTIMIZE: expand.c object.c parse.c
|
H A D | main.c | 455 parse(NiL, sfstruse(tmp), "initstatic", NiL); 588 parse(NiL, sfstruse(tmp), "initdynamic", NiL); 805 parse(NiL, state.argv[i], "command line script", NiL);
|
H A D | read.c | 204 * along with the global rules before the parse 396 * parse the file 407 parse(sp, NiL, r->name, NiL); 451 parse(rfp, NiL, file, NiL);
|
H A D | command.c | 219 errors = parse(NiL, act, r->name, NiL) == FAILED; 537 parse(NiL, r->name, r->name, opt); 540 parse(NiL, r->action, r->name, opt); 791 parse(sp, NiL, job->target->name, NiL); 1435 switch (parse(NiL, action, r->name, NiL))
|
H A D | make.h | 834 int tabstops; /* tab stops for makefile parse */ 1016 extern int parse(Sfio_t*, char*, char*, Sfio_t*);
|
H A D | option.c | 1916 parse(NiL, e, "command line assignment", NiL);
|
H A D | parse.c | 27 * interleaved recursive parse() and expand() nesting supported 38 #define PARSEDEPTH 64 /* maximum parse stack depth */ 121 typedef struct Parseinfo_s /* recursive parse state stack */ 183 * unwind the parse stack to level on errors 2061 * parse a basic assertion statement 2768 * parse an assignment statement 3225 parse(sfstdin, NiL, "query", NiL); 3238 * read and parse file fp or line buffer bp 3243 parse(Sfio_t* fp, char* bp, char* name, Sfio_t* scoped) function 3260 error(1, "parse [all...] |
/ast/src/cmd/mailx/ |
H A D | edit.c | 159 struct parse pp;
|
H A D | mailx.h | 251 * Header parse state. 254 struct parse { struct 962 extern int headget(struct parse*); 964 extern int headset(struct parse*, struct msg*, FILE*, struct header*, Dt_t**, unsigned long); 998 extern void parse(struct msg*, char*, struct headline*, char*, size_t);
|
H A D | head.c | 239 headset(register struct parse* pp, struct msg* mp, FILE* fp, struct header* hp, Dt_t** ignore, unsigned long flags) 299 status(struct parse* pp) 372 headline(register struct parse* pp) 421 multipart(register struct parse* pp) 496 headget(register struct parse* pp) 674 grabname(struct parse* pp, struct msg* mp, char* name, unsigned long type) 711 grabtype(struct parse* pp, register struct msg* mp, unsigned long type) 824 struct parse pp; 877 parse(struct msg* mp, char* line, register struct headline* hl, char* pbuf, size_t psize) function 882 struct parse p [all...] |
H A D | send.c | 88 part(register struct parse* pp, FILE* op, struct part* ap, off_t size, char* prefix, int prefixlen, int emptylen, unsigned long flags) 196 struct parse pp;
|
H A D | cmd1.c | 99 parse(mp, headline, &hl, pbuf, sizeof(pbuf)); 586 struct parse pp;
|
H A D | collect.c | 358 struct parse pp;
|
H A D | spam.c | 491 struct parse pp;
|
/ast/src/cmd/INIT/ |
H A D | ditto.sh | 84 parse() # id user@host:dir function 175 parse src "$1" 176 parse dst "$2"
|
/ast/src/cmd/html/ |
H A D | bb2tok.c | 32 "\bhtml\b parse is rudimentary; don't use \bbb2tok\b to detect valid " 153 parse(const char* path, Sfio_t* ip, Sfio_t* op) function 366 parse(s, ip, sfstdout);
|
/ast/src/lib/libdss/ |
H A D | cxcomp.c | 499 * parse and return identifier with first char c if c!=0 545 * parse and return variable with first char c if c!=0 940 * parse the next (sub)expression 944 parse(Cx_t* cx, Cxcompile_t* cc, Cxexpr_t* expr, int precedence, Cxvariable_t** ref) function 1141 if (parse(cx, cc, expr, p, NiL) != cx->state->type_void || cx->error) 1261 if (parse(cx, cc, expr, cx->table->precedence[CX_CALL], NiL) != cx->state->type_void || cx->error) 1427 u = parse(cx, cc, expr, cx->table->precedence[CX_PAREN], &f); 1494 if (parse(cx, cc, expr, cx->table->precedence[CX_TST], NiL) != cx->state->type_void || cx->error) 1506 if (parse(cx, cc, expr, cx->table->precedence[CX_TST], NiL) != cx->state->type_void || cx->error) 1642 if (parse(c [all...] |
/ast/src/cmd/sort/ |
H A D | main.c | 466 parse(register Sort_t* sp, char** argv) function 874 if ((n = parse(sp, argv)) || rskeyinit(key))
|