Home
last modified time | relevance | path

Searched refs:catch_code (Results 1 – 14 of 14) sorted by relevance

/dports/www/p5-Dancer/Dancer-1.3513/lib/Dancer/
H A DException.pm45 my $catch_code;
46 my @new_rest = grep { ref ne 'Try::Tiny::Catch' or $catch_code = $$_, 0 } @rest;
47 $catch_code
50 ? $block->(@_) : $catch_code->(@_);
/dports/math/octave/octave-6.4.0/libinterp/parse-tree/
H A Dpt-check.cc166 tree_statement_list *catch_code = cmd.cleanup (); in visit_try_catch_command() local
168 if (catch_code) in visit_try_catch_command()
169 catch_code->accept (*this); in visit_try_catch_command()
H A Dpt-bp.cc361 tree_statement_list *catch_code = cmd.cleanup (); in visit_try_catch_command() local
363 if (catch_code) in visit_try_catch_command()
364 catch_code->accept (*this); in visit_try_catch_command()
H A Dpt-walk.cc471 tree_statement_list *catch_code = cmd.cleanup (); in visit_try_catch_command() local
473 if (catch_code) in visit_try_catch_command()
474 catch_code->accept (*this); in visit_try_catch_command()
H A Dpt-pr-code.cc974 tree_statement_list *catch_code = cmd.cleanup (); in visit_try_catch_command() local
976 if (catch_code) in visit_try_catch_command()
980 catch_code->accept (*this); in visit_try_catch_command()
H A Dpt-eval.h176 const std::string& catch_code, int nargout);
183 const std::string& catch_code, int nargout);
H A Dpt-eval.cc710 const std::string& catch_code, in eval() argument
737 tmp = eval_string (catch_code, nargout > 0, parse_status, nargout); in eval()
779 const std::string& catch_code, in evalin() argument
818 tmp = eval_string (catch_code, nargout > 0, parse_status, nargout); in evalin()
3403 tree_statement_list *catch_code = cmd.cleanup (); in visit_try_catch_command() local
3405 if (catch_code) in visit_try_catch_command()
3417 catch_code->accept (*this); in visit_try_catch_command()
H A Doct-parse.cc9799 std::string catch_code = args(1).string_value (); variable
9801 return interp.eval (try_code, catch_code, nargout);
9907 std::string catch_code variable
9910 return interp.evalin (context, try_code, catch_code, nargout);
H A Doct-parse.yy5599 std::string catch_code = args(1).string_value ();
5601 return interp.eval (try_code, catch_code, nargout);
5707 std::string catch_code
5710 return interp.evalin (context, try_code, catch_code, nargout);
/dports/math/octave/octave-6.4.0/libinterp/corefcn/
H A Dinterpreter.h333 const std::string& catch_code, int nargout);
340 const std::string& catch_code, int nargout);
H A Dinterpreter.cc1369 const std::string& catch_code, in eval() argument
1372 return m_evaluator.eval (try_code, catch_code, nargout); in eval()
1384 const std::string& catch_code, in evalin() argument
1387 return m_evaluator.evalin (context, try_code, catch_code, nargout); in evalin()
/dports/devel/glib20/glib-2.70.4/glib/
H A Dgwin32.c1257 unsigned long catch_code; in parse_catch_list() local
1260 catch_code = wcstoul (catch_list, &end, 16); in parse_catch_list()
1267 exceptions[i++] = catch_code; in parse_catch_list()
/dports/devel/p5-Future/Future-0.47/
H A DREADME709 $f2 = $catch_code->( $f1, $category, @details )
/dports/math/octave/octave-6.4.0/
H A DChangeLog10617 Remove useless condition "if (catch_code)" which is always true.