Home
last modified time | relevance | path

Searched refs:new_else (Results 1 – 2 of 2) sorted by relevance

/external/bc/src/
Dbc_parse.c525 bool has_brace, new_else = false; in bc_parse_endBody() local
581 new_else = (p->l.t == BC_LEX_KW_ELSE); in bc_parse_endBody()
583 if (new_else) bc_parse_else(p); in bc_parse_endBody()
592 } while (p->flags.len > 1 && !new_else && (!BC_PARSE_IF_END(p) || brace) && in bc_parse_endBody()
/external/toybox/toys/pending/
Dbc.c3537 int has_brace, new_else = 0; in bc_parse_endBody() local
3595 new_else = (p->l.t == BC_LEX_KEY_ELSE); in bc_parse_endBody()
3596 if (new_else) s = bc_parse_else(p); in bc_parse_endBody()
3603 } while (p->flags.len > 1 && !new_else && (!BC_PARSE_IF_END(p) || brace) && in bc_parse_endBody()