Searched refs:notnull (Results 1 – 3 of 3) sorted by relevance
| /plan9/sys/src/cmd/awk/ |
| H A D | awkgram.y | 127 { --inloop; $$ = stat4(FOR, $3, notnull($6), $9, $12); } 140 IF '(' pattern rparen { $$ = notnull($3); } 173 pattern { $$ = notnull($1); } 203 { $$ = op3(CONDEXPR, notnull($1), $3, $5); } 205 { $$ = op2(BOR, notnull($1), notnull($3)); } 207 { $$ = op2(AND, notnull($1), notnull($3)); } 224 { $$ = op3(CONDEXPR, notnull($1), $3, $5); } 226 { $$ = op2(BOR, notnull($1), notnull($3)); } 228 { $$ = op2(AND, notnull($1), notnull($3)); } 285 | NOT re { $$ = op1(NOT, notnull($2)); } [all …]
|
| H A D | awkgram.c | 149 Node *notnull(Node *n) in notnull() function 1175 { --inloop; yyval.p = stat4(FOR, yypt[-9].yyv.p, notnull(yypt[-6].yyv.p), yypt[-3].yyv.p, yypt[-0].… in yyparse() 1196 { yyval.p = notnull(yypt[-1].yyv.p); } break; in yyparse() 1214 { yyval.p = notnull(yypt[-0].yyv.p); } break; in yyparse() 1253 { yyval.p = op3(CONDEXPR, notnull(yypt[-4].yyv.p), yypt[-2].yyv.p, yypt[-0].yyv.p); } break; in yyparse() 1256 { yyval.p = op2(BOR, notnull(yypt[-2].yyv.p), notnull(yypt[-0].yyv.p)); } break; in yyparse() 1259 { yyval.p = op2(AND, notnull(yypt[-2].yyv.p), notnull(yypt[-0].yyv.p)); } break; in yyparse() 1283 { yyval.p = op3(CONDEXPR, notnull(yypt[-4].yyv.p), yypt[-2].yyv.p, yypt[-0].yyv.p); } break; in yyparse() 1286 { yyval.p = op2(BOR, notnull(yypt[-2].yyv.p), notnull(yypt[-0].yyv.p)); } break; in yyparse() 1289 { yyval.p = op2(AND, notnull(yypt[-2].yyv.p), notnull(yypt[-0].yyv.p)); } break; in yyparse() [all …]
|
| H A D | proto.h | 29 extern Node *notnull(Node *);
|