/ast/src/cmd/builtin/ |
H A D | pty.c | 721 Cond_t* cond; local 727 !(cond = vmnewof(vm, 0, Cond_t, 1, 0)) || 757 if (cond->flags & SKIP) 783 if (!cond->next && !(cond->next = vmnewof(vm, 0, Cond_t, 1, 0))) 788 cond = cond->next; 789 cond->flags = IF; 790 if ((cond->prev->flags & SKIP) && !(cond [all...] |
/ast/src/lib/libbz/ |
H A D | bzhdr.h | 103 #define AssertH(cond,errcode) \ 104 { if (!(cond)) bz__AssertH__fail ( errcode ); } 106 #define AssertD(cond,msg) \ 107 { if (!(cond)) { \ 113 #define AssertD(cond,msg) /* */ 129 #define AssertH(cond,errcode) \ 130 { if (!(cond)) bz_internal_error ( errcode ); } 131 #define AssertD(cond,msg) /* */
|
/ast/src/cmd/mailx/ |
H A D | misc.c | 203 state.source.stack[state.source.sp].cond = state.cond; 207 state.cond = 0; 226 if (state.cond) 229 state.cond = state.source.stack[state.source.sp].cond;
|
H A D | cmd3.c | 883 if (state.cond) { 912 state.cond = n ? SEND : RECEIVE; 918 state.cond = n ? RECEIVE : SEND; 945 state.cond = n ? state.mode : -state.mode; 965 if (!state.cond) { 969 state.cond = -state.cond; 974 * End of if statement. Just set cond back to anything. 980 if (!state.cond) { 984 state.cond [all...] |
H A D | lex.c | 442 * we always execute it, otherwise, check the state of cond. 445 if (!(com->c_argtype & C) && state.cond && state.cond != state.mode)
|
H A D | mailx.h | 625 int cond; /* Current state of conditional exc. */ member in struct:__anon136 728 int cond; /* Saved state.cond */ member in struct:__anon136::__anon142::__anon143
|
/ast/src/lib/libjcl/ |
H A D | jcl.h | 207 Jclcond_t* cond; member in struct:Jclstep_s 225 Jclcond_t* cond; member in struct:Jcl_s
|
H A D | parse.c | 933 cond(register Jcl_t* jcl, char* b, char** p) function 947 if (!(x = cond(jcl, s + 1, &e))) 2034 if (*val && !(step->cond = cond(jcl, val, NiL))) 2095 if (*val && !(jcl->cond = cond(jcl, val, NiL))) 2247 jcleval(Jcl_t* jcl, register Jclcond_t* cond, int code) argument 2249 if (!cond) 2251 while (cond) 2253 switch (cond [all...] |
H A D | run.c | 309 if (!jcleval(jcl, jcl->cond, code)) 311 if (jcleval(jcl, step->cond, code))
|
/ast/src/lib/libz/ |
H A D | zutil.h | 245 # define Assert(cond,msg) {if(!(cond)) z_error(msg);} 252 # define Assert(cond,msg)
|
/ast/src/cmd/html/ |
H A D | troff2html.c | 596 cond(register char* s, char** e) function 713 if (state.cond.level > 1 && state.verbose) 714 error(1, "%d missing .el request%s", state.cond.level - 1, state.cond.level == 2 ? "" : "s"); 715 state.cond.level = 0; 2810 if (!state.cond.level || !(state.cond.flags[state.cond.level] & COND_IE)) 2814 if (!state.cond.level) 2815 state.cond [all...] |
H A D | troff2html.h | 262 } cond; member in struct:State_s
|
H A D | mm2twiki.sh | 68 typeset cond dirs files fg frame label list prev text title type 447 else n=$(( ! ${cond[nest--]} )) 468 .ie) cond[++nest]=$n ;;
|
H A D | mm2bb.sh | 69 typeset cond dirs files fg frame label list prev text title type 457 else n=$(( ! ${cond[nest--]} )) 478 .ie) cond[++nest]=$n ;;
|
H A D | mm2html.sh | 145 typeset cond dirs files fg frame label level prev text trailer 617 else n=$(( ! ${cond[nest--]} )) 638 .ie) cond[++nest]=$n ;;
|
/ast/src/cmd/INIT/ |
H A D | mamake.c | 735 cond(register char* s) function 821 q = cond(t - 1); 829 t = cond(q); 842 q = cond(t);
|
H A D | ratz.c | 785 # define Assert(cond,msg) {if(!(cond)) z_error(msg);} 792 # define Assert(cond,msg)
|
/ast/src/cmd/sortlib/sync/ |
H A D | ss.c | 1333 cond(Ss_t* ss) function 1597 if (!(ss->expr = cond(ss))) 1682 if (!(fp->expr = cond(ss)))
|
/ast/src/lib/libast/regex/ |
H A D | regcomp.c | 2894 alt(Cenv_t* env, int number, int cond) argument 2904 if (!cond) 2920 if (!cond && (g = trie(env, e, f)))
|