Home
last modified time | relevance | path

Searched refs:exception_val (Results 1 – 15 of 15) sorted by relevance

/dports/misc/librepo/librepo-1.14.2/librepo/python/
H A Dexception-py.c46 PyObject *exception_type, *exception_val; in return_error() local
112 exception_val = Py_BuildValue("(OOO)", in return_error()
118 exception_val = Py_BuildValue("(iOO)", in return_error()
127 PyErr_SetObject(exception_type, exception_val); in return_error()
/dports/devel/py-pipenv/pipenv-2021.5.29/pipenv/vendor/tomlkit/
H A Dsource.py39 def __exit__(self, exception_type, exception_val, trace): argument
66 def __exit__(self, exception_type, exception_val, trace): argument
68 return state.__exit__(exception_type, exception_val, trace)
/dports/textproc/py-tomlkit/tomlkit-0.7.2/tomlkit/
H A Dsource.py43 def __exit__(self, exception_type, exception_val, trace): argument
70 def __exit__(self, exception_type, exception_val, trace): argument
72 return state.__exit__(exception_type, exception_val, trace)
/dports/textproc/py-atoml/atoml-1.1.0/atoml/
H A Dsource.py28 def __exit__(self, exception_type, exception_val, trace): argument
55 def __exit__(self, exception_type, exception_val, trace): argument
57 return state.__exit__(exception_type, exception_val, trace)
/dports/devel/py-poetry-core/poetry-core-1.0.7/poetry/core/_vendor/tomlkit/
H A Dsource.py43 def __exit__(self, exception_type, exception_val, trace): argument
70 def __exit__(self, exception_type, exception_val, trace): argument
72 return state.__exit__(exception_type, exception_val, trace)
/dports/lang/quickjs/quickjs-2021-03-27/
H A Drun-test262.c1175 JSValue res_val, exception_val; in eval_buf() local
1183 exception_val = JS_UNDEFINED; in eval_buf()
1211 exception_val = JS_GetException(ctx); in eval_buf()
1212 is_error = JS_IsError(ctx, exception_val); in eval_buf()
1218 js_print(ctx, JS_NULL, 1, &exception_val); in eval_buf()
1224 name = JS_GetPropertyStr(ctx, exception_val, "name"); in eval_buf()
1226 stack = JS_GetPropertyStr(ctx, exception_val, "stack"); in eval_buf()
1254 msg = JS_ToCString(ctx, exception_val); in eval_buf()
1278 if (!JS_IsUndefined(exception_val)) { in eval_buf()
1279 msg_val = JS_ToString(ctx, exception_val); in eval_buf()
[all …]
H A Dquickjs-libc.c3848 static void js_std_dump_error1(JSContext *ctx, JSValueConst exception_val) in js_std_dump_error1() argument
3853 is_error = JS_IsError(ctx, exception_val); in js_std_dump_error1()
3854 js_dump_obj(ctx, stderr, exception_val); in js_std_dump_error1()
3856 val = JS_GetPropertyStr(ctx, exception_val, "stack"); in js_std_dump_error1()
3866 JSValue exception_val; in js_std_dump_error() local
3868 exception_val = JS_GetException(ctx); in js_std_dump_error()
3869 js_std_dump_error1(ctx, exception_val); in js_std_dump_error()
3870 JS_FreeValue(ctx, exception_val); in js_std_dump_error()
/dports/games/warzone2100/warzone2100/3rdparty/quickjs/
H A Drun-test262.c1175 JSValue res_val, exception_val; in eval_buf() local
1183 exception_val = JS_UNDEFINED; in eval_buf()
1211 exception_val = JS_GetException(ctx); in eval_buf()
1212 is_error = JS_IsError(ctx, exception_val); in eval_buf()
1218 js_print(ctx, JS_NULL, 1, &exception_val); in eval_buf()
1224 name = JS_GetPropertyStr(ctx, exception_val, "name"); in eval_buf()
1226 stack = JS_GetPropertyStr(ctx, exception_val, "stack"); in eval_buf()
1254 msg = JS_ToCString(ctx, exception_val); in eval_buf()
1278 if (!JS_IsUndefined(exception_val)) { in eval_buf()
1279 msg_val = JS_ToString(ctx, exception_val); in eval_buf()
[all …]
H A Dquickjs-libc.c3842 static void js_std_dump_error1(JSContext *ctx, JSValueConst exception_val) in js_std_dump_error1() argument
3847 is_error = JS_IsError(ctx, exception_val); in js_std_dump_error1()
3848 js_dump_obj(ctx, stderr, exception_val); in js_std_dump_error1()
3850 val = JS_GetPropertyStr(ctx, exception_val, "stack"); in js_std_dump_error1()
3860 JSValue exception_val; in js_std_dump_error() local
3862 exception_val = JS_GetException(ctx); in js_std_dump_error()
3863 js_std_dump_error1(ctx, exception_val); in js_std_dump_error()
3864 JS_FreeValue(ctx, exception_val); in js_std_dump_error()
/dports/devel/omniORB/omniORB-4.2.4/src/tool/omniidl/cxx/
H A Dy.tab.cc243 Exception* exception_val; member
2011 { (yyval.decl_val) = (yyvsp[-1].exception_val); } in yyparse()
2218 { (yyval.decl_val) = (yyvsp[-1].exception_val); } in yyparse()
3764 (yyvsp[-5].exception_val)->finishConstruction((yyvsp[-1].member_val)); in yyparse()
3765 (yyval.exception_val) = (yyvsp[-5].exception_val); in yyparse()
3775 (yyvsp[-1].exception_val)->finishConstruction(0); in yyparse()
3776 (yyval.exception_val) = (yyvsp[-1].exception_val); in yyparse()
3784 (yyval.exception_val) = new Exception(currentFile, yylineno, mainFile, (yyvsp[0].id_val)); in yyparse()
H A Dy.tab.h151 Exception* exception_val; member
H A Didl.yy.source96 Exception* exception_val;
307 %type <exception_val> except_dcl
308 %type <exception_val> except_header
/dports/games/warzone2100/warzone2100/src/
H A Dquickjs_backend.cpp2272 JSValue exception_val = JS_GetException(ctx); in QuickJS_DumpError() local
2273 bool isError = JS_IsError(ctx, exception_val); in QuickJS_DumpError()
2274 result = QuickJS_DumpObject(ctx, exception_val); in QuickJS_DumpError()
2277 JSValue stack = JS_GetPropertyStr(ctx, exception_val, "stack"); in QuickJS_DumpError()
2284 JS_FreeValue(ctx, exception_val); in QuickJS_DumpError()
/dports/multimedia/gpac-mp4box/gpac-1.0.0/src/scenegraph/
H A Dvrml_js.c587 JSValue exception_val; in js_dump_error() local
590 exception_val = JS_GetException(ctx); in js_dump_error()
591 is_error = JS_IsError(ctx, exception_val); in js_dump_error()
595 js_print_ex(ctx, JS_NULL, 1, (JSValueConst *)&exception_val, GF_LOG_SCRIPT, err_type); in js_dump_error()
598 JSValue val = JS_GetPropertyStr(ctx, exception_val, "stack"); in js_dump_error()
610 JS_FreeValue(ctx, exception_val); in js_dump_error()
/dports/multimedia/gpac-libgpac/gpac-1.0.0/src/scenegraph/
H A Dvrml_js.c587 JSValue exception_val; in js_dump_error() local
590 exception_val = JS_GetException(ctx); in js_dump_error()
591 is_error = JS_IsError(ctx, exception_val); in js_dump_error()
595 js_print_ex(ctx, JS_NULL, 1, (JSValueConst *)&exception_val, GF_LOG_SCRIPT, err_type); in js_dump_error()
598 JSValue val = JS_GetPropertyStr(ctx, exception_val, "stack"); in js_dump_error()
610 JS_FreeValue(ctx, exception_val); in js_dump_error()