Home
last modified time | relevance | path

Searched refs:in_stmt (Results 1 – 5 of 5) sorted by relevance

/freebsd/usr.bin/indent/
H A Dindent.c164 ps.want_blank = ps.in_stmt = ps.ind_stmt = false; in main()
528 ps.in_stmt = true; /* turn on flag which causes an extra level of in main()
642 ps.in_stmt = false; /* dont use stmt continuation in main()
727 ps.in_stmt = false; /* seeing a label does not imply we are in a in main()
793 ps.in_stmt = (ps.p_l_follow > 0); /* we are no longer in the in main()
803 ps.in_stmt = false; /* dont indent the {} */ in main()
894 ps.in_stmt = ps.ind_stmt = false; in main()
928 ps.in_stmt = false; in main()
1019 ps.in_stmt = false; in main()
H A Dindent_globs.h284 int in_stmt; /* set to 1 while in a stmt */ member
H A Dio.c206 ps.ind_stmt = ps.in_stmt & ~ps.in_decl; /* next line should be in dump_line()
H A Dlexi.c336 !state->in_stmt && in lexi()
/freebsd/crypto/openssl/util/
H A Dcheck-format.pl458 my $in_stmt = $in_expr || @nested_symbols != 0; # not: || $in_typedecl != 0
470 … if ($c ne "{" || $in_stmt) { # for '{' inside stmt/expr (not: decl), for '(', '[', or '?' anywhere
481 if (($c ne ":" || $in_stmt # ignore ':' outside stmt/expr/decl
490 if ($c ne "}" || $in_stmt) { # for '}' inside stmt/expr/decl, ')', ']', or ':'
844 my $in_stmt = $in_expr || @nested_symbols != 0 || $in_typedecl != 0;
845 if ($in_stmt) { # expr/stmt/type decl/var def/fn hdr, i.e., not at block level
880 if (!$in_stmt) { # at block level, i.e., outside expr/stmt/type decl/var def/fn hdr