Searched refs:notnull (Results 1 – 3 of 3) sorted by relevance
| /freebsd/contrib/one-true-awk/ |
| H A D | awkgram.y | 126 { --inloop; $$ = stat4(FOR, $3, notnull($6), $9, $12); } 139 IF '(' pattern rparen { $$ = notnull($3); } 172 pattern { $$ = notnull($1); } 202 { $$ = op3(CONDEXPR, notnull($1), $3, $5); } 204 { $$ = op2(BOR, notnull($1), notnull($3)); } 206 { $$ = 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)); } 286 | NOT re { $$ = op1(NOT, notnull($2)); } [all …]
|
| H A D | proto.h | 29 extern Node *notnull(Node *);
|
| /freebsd/contrib/sqlite3/ |
| H A D | sqlite3.c | 191134 int notnull = 0; local 191191 notnull = pCol->notNull!=0; 191211 if( pNotNull ) *pNotNull = notnull;
|