Searched refs:nest (Results 1 - 25 of 45) sorted by relevance

12

/macosx-10.10/less-25/less/
H A Dbrac.c35 register int nest; local
84 nest = 0;
88 nest++;
89 else if (c == cbrac && --nest < 0)
/macosx-10.10/tcl-105/tcl84/tcl/tools/
H A Dman2html2.tcl19 # HTML tags (UL, OL, DL). Local to 'nest' proc.
54 nest init
235 nest decr
236 nest incr
250 nest para DL DT
279 nest decr
280 nest incr
284 nest decr
287 nest incr
296 nest rese
795 proc nest {op {listStart "NEW"} {listItem {} } } { procedure
[all...]
/macosx-10.10/tcl-105/tcl/tcl/tools/
H A Dman2html2.tcl22 # OL, DL). Local to 'nest' proc.
56 nest init
247 nest decr
248 nest incr
262 nest para DL DT
291 nest decr
292 nest incr
296 nest decr
299 nest incr
308 nest rese
860 proc nest {op {listStart "NEW"} {listItem ""} } { procedure
[all...]
/macosx-10.10/emacs-93/emacs/lisp/progmodes/
H A Dpascal.el288 (let ((nest 1))
289 (while (and (> nest 0)
293 (cond ((match-beginning 1) (setq nest (1+ nest)))
294 ((match-beginning 2) (setq nest (1- nest)))
295 ((looking-at "[^(\n]+)") (setq nest 0))))))
299 (let ((nest 1))
300 (while (and (> nest 0)
302 (cond ((match-beginning 1) (setq nest
[all...]
H A Dsh-script.el986 subshells can nest."
1001 (nest 1)) ;; subshell nesting level
1015 ((eq ?\` char) (setq nest (+ nest (if bq -1 1)) bq (not bq)))
1016 ((and (> nest 0) (eq ?\) char)) (setq nest (1- nest)))
1017 ((and (eq ?$ last) (eq ?\( char)) (setq nest (1+ nest)))
1018 ((and (> nest
[all...]
/macosx-10.10/ruby-106/ruby/lib/rdoc/parser/
H A Druby.rb342 nest = 0
347 nest += 1
352 while nest > 0
355 nest -= 1 if TkRPAREN === tk
559 nest = 0
566 nest += 1
569 nest -= 1
570 break if @scanner.lex_state == EXPR_END and nest <= 0
705 nest = 0
721 break if nest <
[all...]
H A Druby_tools.rb123 @nest = 0
/macosx-10.10/ruby-106/ruby/test/
H A Dtest_prettyprint.rb195 q.nest(@string.length) {
198 q.nest(1) {
221 q.nest(2) {
247 q.group {q.nest(2) {
250 q.nest(2) {
254 q.group {q.nest(2) {
257 q.nest(2) {
261 q.group {q.nest(2) {
264 q.nest(2) {
/macosx-10.10/swig-12/Source/Swig/
H A Dtypeobj.c882 int nest = 1; local
884 while (*c && nest) {
886 nest++;
888 nest--;
915 int nest = 1; local
918 while (*c && nest) {
920 nest++;
922 nest--;
1025 int nest = 1; local
1027 while ((d > c) && (nest)) {
[all...]
H A Dstype.c255 int nest = 1; local
257 while (*c && nest) {
259 nest++;
261 nest--;
/macosx-10.10/cxxfilt-11/cxxfilt/bfd/
H A Dstabs.c299 int nest;
307 nest = 0;
322 if (nest == 0)
324 --nest;
327 ++nest;
328 else if (nest == 0)
413 nest = 0;
424 if (nest == 0)
430 --nest;
433 ++nest;
297 int nest; local
[all...]
/macosx-10.10/cxxfilt-11/cxxfilt/binutils/
H A Dsrconv.c582 struct coff_scope *scope, int type, int nest)
600 nest,
611 dps.nesting = nest;
635 struct coff_type *type, int nest)
707 walk_tree_type_1 (sfile, symbol, type->u.pointer.points_to, nest + 1);
723 walk_tree_type_1 (sfile, symbol, type->u.function.function_returns, nest + 1);
730 walk_tree_symbol (sfile, 0, param, nest);
758 walk_tree_symbol (sfile, 0, member, nest + 1);
814 walk_tree_type_1 (sfile, symbol, type->u.array.array_of, nest + 1);
841 walk_tree_symbol (sfile, 0, member, nest
580 wr_dps_start(struct coff_sfile *sfile, struct coff_section *section ATTRIBUTE_UNUSED, struct coff_scope *scope, int type, int nest) argument
634 walk_tree_type_1(struct coff_sfile *sfile, struct coff_symbol *symbol, struct coff_type *type, int nest) argument
906 walk_tree_type(struct coff_sfile *sfile, struct coff_symbol *symbol, struct coff_type *type, int nest) argument
953 walk_tree_symbol(struct coff_sfile *sfile, struct coff_section *section ATTRIBUTE_UNUSED, struct coff_symbol *symbol, int nest) argument
1167 walk_tree_scope(struct coff_section *section, struct coff_sfile *sfile, struct coff_scope *scope, int nest, int type) argument
[all...]
/macosx-10.10/tcl-105/tcl_ext/mk4tcl/metakit/tcl/tests/
H A Dbasic.test163 mk::view layout db.v {tag {nest ^}}
166 mk::row append db.v!0.nest tag b
167 mk::row append db.v!0.nest!0.nest tag c
170 equal [mk::get db.v!0.nest!0 tag] b
171 equal [mk::get db.v!0.nest!0.nest!0 tag] c
/macosx-10.10/ruby-106/ruby/misc/
H A Druby-mode.el380 (and (< x 0) (error "invalid nest"))
477 (defun ruby-parse-partial (&optional end in-string nest depth pcol indent)
560 (setq nest (cons (cons (char-after (point)) (point)) nest))
563 (setq nest (cons (cons (char-after (point)) pnt) nest))
569 (if nest
570 (cdr (nth 0 nest))
577 (setq nest (cdr nest))
[all...]
/macosx-10.10/ruby-106/ruby/bootstraptest/
H A Dtest_eval.rb157 $nest = false
164 unless $nest
165 $nest = true
/macosx-10.10/ruby-106/ruby/lib/
H A Dprettyprint.rb207 # nest(indent) { ... }.
216 nest(indent) {
240 def nest(indent) method
374 def nest(indent) method in class:SingleLine
/macosx-10.10/ksh-23/ksh/src/cmd/ksh93/sh/
H A Dlex.c90 char nest; member in struct:lexdata
281 lp->lexd.nocopy = lp->lexd.docword = lp->lexd.nest = lp->lexd.paren = 0;
352 lp->lexd.arith = (lp->lexd.nest==1);
353 if(lp->lexd.nest)
355 pushlevel(lp,lp->lexd.nest,ST_NONE);
356 lp->lexd.nest = 0;
561 lp->lexd.nest=1;
1739 lp->lexd.nest = close;
/macosx-10.10/apache-793/httpd/modules/generators/
H A Dmod_info.c143 static void mod_info_indent(request_rec * r, int nest, argument
168 for (i = 1; i <= nest; ++i)
175 for (i = 1; i <= nest; ++i) {
184 int nest)
186 mod_info_indent(r, nest, dir->filename, dir->line_num);
196 int nest)
198 mod_info_indent(r, nest, dir->filename, dir->line_num);
208 int nest)
211 mod_info_indent(r, nest, dir->filename, 0);
183 mod_info_show_cmd(request_rec * r, const ap_directive_t * dir, int nest) argument
195 mod_info_show_open(request_rec * r, const ap_directive_t * dir, int nest) argument
207 mod_info_show_close(request_rec * r, const ap_directive_t * dir, int nest) argument
/macosx-10.10/ruby-106/ruby/lib/irb/
H A Druby-lex.rb1068 nest = 0
1070 if @quoted == ch and nest == 0
1087 nest += 1
1089 nest -= 1
/macosx-10.10/gnutar-453/gnutar/lib/
H A Dregcomp.c63 Idx nest, reg_errcode_t *err);
66 Idx nest, reg_errcode_t *err);
69 Idx nest, reg_errcode_t *err);
72 Idx nest, reg_errcode_t *err);
2124 reg_syntax_t syntax, Idx nest, reg_errcode_t *err)
2128 tree = parse_branch (regexp, preg, token, syntax, nest, err);
2136 && (nest == 0 || token->type != OP_CLOSE_SUBEXP))
2138 branch = parse_branch (regexp, preg, token, syntax, nest, err);
2165 reg_syntax_t syntax, Idx nest, reg_errcode_t *err)
2169 tree = parse_expression (regexp, preg, token, syntax, nest, er
2114 parse_reg_exp(re_string_t *regexp, regex_t *preg, re_token_t *token, reg_syntax_t syntax, Idx nest, reg_errcode_t *err) argument
2155 parse_branch(re_string_t *regexp, regex_t *preg, re_token_t *token, reg_syntax_t syntax, Idx nest, reg_errcode_t *err) argument
2195 parse_expression(re_string_t *regexp, regex_t *preg, re_token_t *token, reg_syntax_t syntax, Idx nest, reg_errcode_t *err) argument
2411 parse_sub_exp(re_string_t *regexp, regex_t *preg, re_token_t *token, reg_syntax_t syntax, Idx nest, reg_errcode_t *err) argument
[all...]
/macosx-10.10/emacs-93/emacs/lisp/calc/
H A Dcalc-map.el60 (nest (calc-is-hyperbolic))
62 (nargs (if (and nest (not rev)) 2 1))
66 (calc-mapping-dir (and (not accum) (not nest) ""))
68 (if nest
73 (if nest 1 2)))))
77 (concat (substring (if nest
82 (if nest
85 (if accum 'calcFunc-anest 'calcFunc-nest))
493 ( ?R 2 calcFunc-nest )
698 (calcFunc-nest
[all...]
/macosx-10.10/ruby-106/ruby/
H A Ddir.c1603 int nest = 0, status = 0; local
1606 if (*p == '{' && nest++ == 0) {
1609 if (*p == '}' && --nest <= 0) {
1630 nest = 0;
1631 while (p < rbrace && !(*p == ',' && nest == 0)) {
1632 if (*p == '{') nest++;
1633 if (*p == '}') nest--;
/macosx-10.10/llvmCore-3425.0.34/utils/vim/
H A Dllvm.vim54 syn keyword llvmKeyword nocapture byval nest readnone readonly noalias uwtable
/macosx-10.10/ruby-106/ruby/lib/rdoc/
H A Druby_lex.rb1190 nest = 0
1195 if @quoted == ch and nest <= 0
1222 nest += 1
1224 nest -= 1
1249 nest = 0
1253 break if nest.zero?
1254 nest -= 1
1256 nest += 1
/macosx-10.10/ksh-23/ksh/src/lib/libast/regex/
H A Dreglib.h520 Nest_t nest; /* nested match */ member in union:Rex_s::__anon9364

Completed in 309 milliseconds

12