Lines Matching defs:brace
707 "POSIX requires the left brace be on the same line as the function header",
3534 static BcStatus bc_parse_endBody(BcParse *p, int brace) {
3541 if (brace) {
3557 if (has_brace && !brace) return bc_parse_err(p, BC_ERROR_PARSE_TOKEN);
3597 else if (!has_brace && (!BC_PARSE_IF_END(p) || brace))
3601 if (brace && has_brace) brace = 0;
3603 } while (p->flags.len > 1 && !new_else && (!BC_PARSE_IF_END(p) || brace) &&
3606 if (!s && p->flags.len == 1 && brace)
3608 else if (brace && BC_PARSE_BRACE(p)) {
3961 static BcStatus bc_parse_body(BcParse *p, int brace) {
3970 if (!brace) return bc_parse_err(p, BC_ERROR_PARSE_TOKEN);
3988 if (!s && !brace && !BC_PARSE_BODY(p) && len <= p->flags.len)