Home
last modified time | relevance | path

Searched refs:stmt (Results 1 – 10 of 10) sorted by relevance

/external/libpcap/
Dgencode.h190 struct stmt { struct
198 struct stmt s; argument
233 struct stmt s; /* branch stmt */
Doptimize.c111 static int atomuse(struct stmt *);
112 static int atomdef(struct stmt *);
117 static inline void vstore(struct stmt *, int *, int, int);
128 static void fold_op(struct stmt *, int, int);
132 static void opt_stmt(struct stmt *, int[], int);
133 static void deadstmt(struct stmt *, struct stmt *[]);
367 struct stmt *s; in atomuse()
413 struct stmt *s; in atomdef()
611 struct stmt *s; in vstore()
624 struct stmt *s; in fold_op()
[all …]
Dtokdefs.h248 struct stmt *stmt; member
Dgrammar.y143 struct stmt *stmt; member
Dgrammar.c440 struct stmt *stmt; member
Dgencode.c4418 struct stmt *
4420 struct stmt **s;
/external/bison/tests/
Dcxx-type.at25 # stmt. Then compile the result.
90 %destructor { free_node ($$); } stmt expr decl declarator TYPENAME ID
95 | prog stmt {
107 stmt : expr ';' $2 { $$ = ]$[1; }
Dtestsuite60317 %destructor { free_node ($$); } stmt expr decl declarator TYPENAME ID
60322 | prog stmt {
60334 stmt : expr ';' %dprec 1 { $$ = $1; }
61270 %destructor { free_node ($$); } stmt expr decl declarator TYPENAME ID
61275 | prog stmt {
61287 stmt : expr ';' %dprec 1 { $$ = $1; }
62228 %destructor { free_node ($$); } stmt expr decl declarator TYPENAME ID
62233 | prog stmt {
62245 stmt : expr ';' %merge <stmtMerge> { $$ = $1; }
63191 %destructor { free_node ($$); } stmt expr decl declarator TYPENAME ID
[all …]
/external/bison/doc/
Dbison.texinfo574 in lower case, such as @code{expr}, @code{stmt} or @code{declaration}.
600 stmt: RETURN expr ';'
960 | prog stmt @{ printf ("\n"); @}
963 stmt : expr ';' %dprec 1
994 parses as either an @code{expr} or a @code{stmt}
1004 ambiguous. One of the parsers eventually reduces @code{stmt : expr ';'} and
1005 the other reduces @code{stmt : decl}, after which both parsers are in an
1006 identical state: they've seen @samp{prog stmt} and have the same unprocessed
1047 other. To do so, you could change the declaration of @code{stmt} as
1051 stmt : expr ';' %merge <stmtMerge>
[all …]
Dbison.info868 should be in lower case, such as `expr', `stmt' or `declaration'.
894 stmt: RETURN expr ';'
1202 | prog stmt { printf ("\n"); }
1205 stmt : expr ';' %dprec 1
1231 parses as either an `expr' or a `stmt' (assuming that `T' is recognized
1240 eventually reduces `stmt : expr ';'' and the other reduces `stmt :
1242 `prog stmt' and have the same unprocessed input remaining. We say that
1274 other. To do so, you could change the declaration of `stmt' as follows:
1276 stmt : expr ';' %merge <stmtMerge>
3262 stmt: LET '(' var ')'
[all …]