Searched refs:nesting (Results 1 - 25 of 55) sorted by relevance

123

/macosx-10.10.1/Heimdal-398.1.2/cf/
H A Droken-h-process.pl23 my @nesting;
25 push @nesting, 1;
31 push @nesting, 1;
33 push @nesting, 0;
39 push @nesting, 0;
41 push @nesting, 1;
45 my $var = pop @nesting;
47 push @nesting, $var;
49 } elsif ($nesting[$#nesting] an
[all...]
/macosx-10.10.1/postfix-255/postfix/src/util/
H A Ddict_pcre.c77 #define DICT_PCRE_OP_IF 2 /* Increase if/endif nesting on match */
78 #define DICT_PCRE_OP_ENDIF 3 /* Decrease if/endif nesting on match */
104 int nesting; /* level of IF/ENDIF nesting */ member in struct:DICT_PCRE_RULE
268 int nesting = 0; local
289 if (nesting < rule->nesting)
366 nesting++;
373 nesting--;
584 static DICT_PCRE_RULE *dict_pcre_rule_alloc(int op, int nesting, argument
601 dict_pcre_parse_rule(const char *mapname, int lineno, char *line, int nesting, int dict_flags) argument
816 int nesting = 0; local
[all...]
H A Ddict_regexp.c70 #define DICT_REGEXP_OP_IF 2 /* Increase if/endif nesting on match */
71 #define DICT_REGEXP_OP_ENDIF 3 /* Decrease if/endif nesting on match */
87 int nesting; /* Level of search nesting */ member in struct:DICT_REGEXP_RULE
219 int nesting = 0; local
240 if (nesting < rule->nesting)
304 nesting++;
311 nesting--;
537 static DICT_REGEXP_RULE *dict_regexp_rule_alloc(int op, int nesting, argument
554 dict_regexp_parseline(const char *mapname, int lineno, char *line, int nesting, int dict_flags) argument
748 int nesting = 0; local
[all...]
/macosx-10.10.1/configd-699.1.5/scutil.tproj/
H A Dscutil.h55 extern int nesting;
H A Dcommands.c403 /* open file, increase nesting level */
405 nesting++;
H A Dscutil.c79 __private_extern__ int nesting = 0; variable
287 if (nesting > 0) {
288 SCPrint(TRUE, stdout, CFSTR("%d> %s\n"), nesting, line);
/macosx-10.10.1/mDNSResponder-561.1.1/mDNSMacOS9/
H A DmDNSMacOS9.h56 UInt32 nesting; member in struct:mDNS_PlatformSupport_struct
H A DmDNSMacOS9.c391 if (m->p->nesting) LogMsg("CallmDNSNotifier ERROR! OTEnterNotifier is supposed to suppress notifier callbacks");
518 if (m->p->nesting) LogMsg("mDNSTimerTask ERROR! OTEnterNotifier is supposed to suppress timer callbacks too");
523 // Likewise, if m->mDNS_busy or m->p->nesting, we'll catch this on the unlock
524 if (m->p->ep && m->mDNS_busy == 0 && m->p->nesting == 0) mDNS_Execute(m);
542 m->p->nesting = 0;
635 // If we haven't even opened our endpoint yet, then just increment m->p->nesting for the same reason
637 if (!m->p->ep || m->p->nesting || OTEnterNotifier(m->p->ep) == false) m->p->nesting++;
659 if (m->p->nesting) m->p->nesting
[all...]
/macosx-10.10.1/vim-55/runtime/indent/
H A Dsh.vim125 let nesting = 0
134 let nesting += 1
136 if nesting == 0
139 let nesting -= 1
/macosx-10.10.1/apr-32/apr/apr/strings/
H A Dapr_fnmatch.c407 int nesting; local
409 nesting = 0;
423 ++nesting;
427 if (nesting) {
/macosx-10.10.1/emacs-93/emacs/lisp/progmodes/
H A Dpascal.el856 (type (catch 'nesting
858 (cond ((nth 3 state) (throw 'nesting 'string))
859 ((nth 4 state) (throw 'nesting 'comment))
865 (throw 'nesting 'cpp)))
881 (throw 'nesting 'caseblock))
884 (throw 'nesting 'progbeg))
887 (throw 'nesting 'progbeg))
892 (throw 'nesting 'case))
894 (throw 'nesting 'declaration))
895 (t (throw 'nesting 'bloc
[all...]
/macosx-10.10.1/mail_cmds-30/mail/
H A Dnames.c185 int nesting = 0; local
190 nesting++;
193 --nesting;
196 if (nesting <= 0)
232 int nesting = 0; local
237 nesting++;
240 --nesting;
243 if (nesting <= 0)
H A Daux.c392 int nesting = 1; local
394 for (; nesting > 0 && *cp; cp++) {
401 nesting++;
404 nesting--;
/macosx-10.10.1/dcerpc-61/dcerpc/idl_compiler/
H A Direpscp.c363 ** Returns immediate nesting level of the specified scope kind.
369 int IR_in_scope /* Returns data kind nesting level */
390 int IR_in_scope_parent /* Returns data kind nesting level */
465 ** Returns nesting level of a type given by the specified address.
472 ** and we want this routine to correctly determine nesting for that case.
474 int IR_under_type /* Returns type nesting level */
481 int nesting = 0;
487 nesting++;
489 return nesting;
508 int depth; /* Depth of struct nesting */
480 int nesting = 0; local
[all...]
/macosx-10.10.1/CPANInternal-159.1/JSON-XS-3.01/t/
H A D19_incr.t78 eval { !$coder->incr_parse (" [] ") }; ok ($@ =~ /maximum nesting/, "incdepth2 $@");
/macosx-10.10.1/vim-55/runtime/syntax/
H A Dmma.vim35 " fix nesting
105 " allow nesting (* (* *) *) even though the frontend
112 " TODO - fix this for nesting, or not...
272 " for folding, however, it doesn't get the nesting right.
H A Dmarkdown.vim41 " TODO: real nesting
/macosx-10.10.1/WTF-7600.1.24/wtf/
H A DDateMath.cpp549 int nesting = 0; local
554 nesting++;
555 else if (ch == ')' && nesting > 0)
556 nesting--;
557 else if (nesting == 0)
/macosx-10.10.1/emacs-93/emacs/src/
H A Dsyntax.c72 int incomment; /* -1 if in unnestable comment else comment nesting */
511 int nesting = 1; /* current comment nesting */
627 else if (--nesting <= 0)
643 nesting++;
1890 NESTING should be positive to indicate the nesting at the beginning
1899 corresponding bytepos into *BYTEPOS_PTR and the current nesting
1909 forw_comment (from, from_byte, stop, nesting, style, prev_syntax,
1912 int nesting, style, prev_syntax;
1920 if (nesting <
506 int nesting = 1; /* current comment nesting */ local
[all...]
/macosx-10.10.1/CPANInternal-159.1/JSON-PP-2.27203/t/
H A D019_incr.t166 eval q{ !$coder->incr_parse (" [] ") }; ok ($@ =~ /maximum nesting/, "incdepth2 $@");
/macosx-10.10.1/cxxfilt-11/cxxfilt/binutils/
H A Dwrstabs.c165 /* The block nesting depth. */
166 unsigned int nesting; member in struct:stab_write_handle
501 info.nesting = 0;
2093 assert (info->nesting == 0 && info->fun_offset == -1);
2185 ++info->nesting;
2191 if (info->nesting == 1)
2235 assert (info->nesting > 0);
2237 --info->nesting;
2240 if (info->nesting == 0)
/macosx-10.10.1/ruby-106/ruby/test/ruby/
H A Dtest_fiber.rb219 assert_equal([], Fiber.new(&Module.method(:nesting)).resume)
/macosx-10.10.1/emacs-93/emacs/lisp/mail/
H A Dsupercite.el530 "Temp regexp describing non-nested citation cited with a nesting citer.")
1388 "Coerce a non-nested citation that's been cited with a dumb nesting citer."
1393 (defun sc-guess-nesting (&optional string)
1394 "Guess the citation nesting on the current line.
1395 If nesting cannot be guessed, nil is returned. Optional STRING if
1401 nesting)
1406 (setq nesting (match-string 0 string)
1409 nesting)))
1413 (let* ((nesting (sc-guess-nesting))
[all...]
/macosx-10.10.1/CPANInternal-159.1/Bencode-1.4/lib/
H A DBencode.pm64 croak _msg 'nesting depth exceeded at %s'
77 croak _msg 'nesting depth exceeded at %s'
235 =item C<nesting depth exceeded at %s>
/macosx-10.10.1/tcl-105/tcl_ext/tclvfs/tclvfs/library/template/
H A Dglobfind.tcl52 It reports symbolic links along with other files by default, but checks for nesting of

Completed in 387 milliseconds

123