HomeSort by: relevance | last modified time | path
    Searched refs:nesting (Results 1 - 13 of 13) sorted by relevancy

  /src/usr.bin/make/unit-tests/
opt-debug-for.mk 12 # XXX: The "loop body" should print the nesting level as well.
15 # the "begin" and "end" events are not balanced and the nesting level
directive-if-nested.mk 4 # .if directives is pre-allocated, any deeper nesting is reallocated.
varmod-match.mk 193 # ( while parsing the pattern, starts a nesting level
194 # ) while parsing the pattern, ends a nesting level
195 # { while parsing the pattern, starts a nesting level
196 # } while parsing the pattern, ends a nesting level
varmod-edge.mk 111 # counts for the nesting level and matches with the first closing brace.
126 # Again, the ( takes place in the nesting level, and there is no way to
var-op-sunsh.mk 88 # the assignment operator at nesting level 0. All other words would lead
varname.mk 33 # as an escape character, therefore the parentheses still count to the nesting
  /src/bin/ksh/
syn.c 18 int start_token; /* token than began nesting (eg, FOR) */
19 int start_line; /* line nesting began on */
57 static struct nesting_state nesting; /* \n changed to ; */ variable in typeref:struct:nesting_state
722 if (nesting.start_token) {
723 c = nesting.start_token;
724 source->errline = nesting.start_line;
764 *save = nesting;
765 nesting.start_token = tok;
766 nesting.start_line = source->line;
773 nesting = *saved
    [all...]
  /src/usr.bin/mail/
support.c 429 int nesting = 1; local in function:skip_comment
431 for (/*EMPTY*/; nesting > 0 && *cp; cp++) {
438 nesting++;
441 nesting--;
names.c 98 int nesting = 0; local in function:yankword
103 nesting++;
106 --nesting;
109 if (nesting <= 0)
mime_decode.c 150 int nesting; local in function:get_param
167 nesting = 1;
168 while (nesting > 0 && *++cp) {
172 nesting++;
174 nesting--;
  /src/tests/usr.bin/indent/
t_errors.sh 329 'error: code.c:1: Statement nesting error' \
342 'error: code.c:1: Statement nesting error' \
383 error: code.c:4: Statement nesting error
  /src/bin/sh/
expand.c 1128 int nesting = 1; local in function:evalvar
1139 nesting++;
1141 if (--nesting == 0)
  /src/common/lib/libx86emu/
x86emu.c 3207 uint8_t nesting; local in function:x86emuOp_enter
3211 nesting = fetch_byte_imm(emu);
3214 if (nesting > 0) {
3215 for (i = 1; i < nesting; i++) {

Completed in 21 milliseconds