Searched defs:stmt (Results 1 - 5 of 5) sorted by relevance

/illumos-gate/usr/src/cmd/fm/eversholt/common/
H A Descparse.y35 * in the stmt rule below. the yacc state machine code will call
88 %type <np> root stmtlist stmt nvpairlist nvpair nvname nvexpr
101 | stmtlist stmt
105 stmt : error ';' label
107 | IF '(' expr ')' stmt
H A Dtree.h223 } stmt; /* used for stmt */ member in union:node::__anon457
/illumos-gate/usr/src/cmd/awk/
H A Dawk.g.y79 %type <p> simple_stmt opt_simple_stmt stmt stmtlist
134 FOR '(' opt_simple_stmt ';' pattern ';' opt_simple_stmt rparen stmt
136 | FOR '(' opt_simple_stmt ';' ';' opt_simple_stmt rparen stmt
138 | FOR '(' varname IN varname rparen stmt
314 stmt: label
318 | do stmt WHILE '(' pattern ')' st
323 | if stmt else stmt { $$ = stat3(IF, $1, $2, $4); }
324 | if stmt { $$ = stat3(IF, $1, $2, NIL); }
332 | while stmt {
[all...]
/illumos-gate/usr/src/lib/libdtrace/common/
H A Ddt_sugar.c315 dt_node_t *stmt = dt_node_statement(dt_node_op2(DT_TOK_ASGN, local
317 return (dt_node_clause(dp->dtsp_pdescs, NULL, stmt));
392 dt_node_t *stmt; local
397 for (stmt = stmts; stmt != NULL; stmt = next_stmt) {
398 next_stmt = stmt->dn_list;
400 if (stmt->dn_kind != DT_NODE_IF) {
402 first_stmt_in_basic_block = stmt;
403 prev_stmt = stmt;
[all...]
/illumos-gate/usr/src/uts/common/io/audio/drv/audioemu10k/dsp/
H A Dasm10k.c172 static char *stmt = NULL, *lasts = NULL; local
178 if (stmt == NULL) {
211 stmt = NULL;
219 stmt = strtok_r(line, ";\n", &lasts);
221 stmt = strtok_r(NULL, ";\n", &lasts);
224 if (stmt != NULL) {
239 s = strtok_r(stmt, " \t\n(),", &ls);

Completed in 51 milliseconds