OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Exception
(Results
1 - 25
of
294
) sorted by relevancy
1
2
3
4
5
6
7
8
9
10
11
>>
/src/external/gpl3/gcc.old/dist/libphobos/testsuite/libphobos.exceptions/
stderr_msg.d
2
// { dg-output "object.
Exception
@.*: stderr_msg msg" }
5
throw new
Exception
("stderr_msg msg");
message_with_null.d
2
// { dg-output "object.
Exception
@.*: hello.*world!" }
7
throw new
Exception
("hello\0 world!");
line_trace.d
1
// { dg-output "object.
Exception
@.*:
exception
" }
8
catch (
Exception
e)
18
throw new
Exception
("
exception
");
catch_in_finally.d
3
class MyException :
Exception
17
catch (
Exception
)
23
// Test that exceptions that are entirely thrown and caught in finally blocks don't affect
exception
handling.
30
throw new
Exception
("p");
37
catch (
Exception
e)
52
throw new
Exception
("p");
56
throw new
Exception
("q");
64
catch(
Exception
e)
80
throw new
Exception
("p");
89
throw new
Exception
("q")
[
all
...]
rt_trap_exceptions_drt.d
1
// { dg-shouldfail "uncaught
exception
" }
5
throw new
Exception
("foo");
static_dtor.d
2
// { dg-output "object.
Exception
@.*: static_dtor_exception" }
11
else throw new
Exception
("static_dtor_exception");
rt_trap_exceptions.d
1
// { dg-shouldfail "uncaught
exception
" }
2
// { dg-output "gcc.deh.*: uncaught
exception
" }
14
throw new
Exception
("this will abort");
long_backtrace_trunc.d
10
throw new
Exception
("test");
32
} catch (
Exception
e) {
/src/sys/external/bsd/acpica/dist/utilities/
utexcep.c
3
* Module Name: utexcep -
Exception
code support
61
* RETURN: A string containing the
exception
text. A valid pointer is
64
* DESCRIPTION: This function translates an ACPI
exception
into an ASCII
73
const ACPI_EXCEPTION_INFO *
Exception
;
79
Exception
= AcpiUtValidateException (Status);
80
if (!
Exception
)
82
/*
Exception
code was not recognized */
85
"Unknown
exception
code: 0x%8.8X", Status));
90
return (
Exception
->Name);
102
* RETURN: A string containing the
exception
text. NULL if exception i
[
all
...]
/src/external/cddl/dtracetoolkit/dist/Code/Java/
Func_abc.java
6
} catch (
Exception
e) { }
12
} catch (
Exception
e) { }
19
} catch (
Exception
e) { }
/src/external/gpl3/gcc.old/dist/libphobos/src/std/internal/windows/
advapi32.d
48
throw new
Exception
(`LoadLibraryA("Advapi32.dll")`);
52
throw new
Exception
(`GetProcAddress(hAdvapi32 , "RegDeleteKeyExW")`);
62
throw new
Exception
(`FreeLibrary("Advapi32.dll")`);
/src/sys/external/bsd/acpica/dist/tools/acpihelp/
acpihelp.h
100
#define AH_DISPLAY_EXCEPTION_TEXT(Status,
Exception
) \
102
Exception
->Name,
Exception
->Description)
/src/external/bsd/zstd/dist/build/meson/
GetZstdLibraryVersion.py
26
raise
Exception
("Unable to find version string")
/src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/internal/array/
construction.d
72
catch (
Exception
o)
148
throw new
Exception
("");
157
catch (
Exception
)
182
catch (
Exception
)
212
catch (
Exception
o)
279
throw new
Exception
("Oh no.");
288
catch (
Exception
)
315
catch (
Exception
)
/src/external/apache2/llvm/dist/llvm/bindings/python/llvm/
object.py
5
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-
exception
116
raise
Exception
('No input found.')
199
raise
Exception
('Section instance has expired.')
207
raise
Exception
('Section instance has expired.')
214
raise
Exception
('Section instance has expired.')
227
raise
Exception
('Section instance has expired.')
234
raise
Exception
('Section instance has expired.')
248
raise
Exception
('Section instance has expired.')
308
raise
Exception
('Symbol instance has expired.')
316
raise
Exception
('Symbol instance has expired.'
[
all
...]
/src/sys/arch/hppa/spmath/
sfcmp.c
69
/* Check if a NaN is involved. Signal an invalid
exception
when
74
&& (
Exception
(cond) || Sgl_isone_signaling(left)))
78
&& (
Exception
(cond) || Sgl_isone_signaling(right)) ) )
/src/external/gpl3/gcc.old/dist/libphobos/testsuite/libphobos.shared/
lib.d
6
throw new
Exception
(null);
9
Exception
collectException(void delegate() dg)
13
catch (
Exception
e)
75
catch (
Exception
e)
/src/external/gpl3/gcc.old/dist/libphobos/testsuite/libphobos.thread/
tlsstack.d
19
catch(
Exception
e)
/src/sys/external/bsd/acpica/dist/tools/acpiexec/
aeexception.c
3
* Module Name: aeexception -
Exception
and signal handlers
65
* PARAMETERS: Standard
exception
handler parameters
69
* DESCRIPTION: System
exception
handler for AcpiExec utility. Called from
70
* the core ACPICA code after any
exception
during method
88
const char *
Exception
;
92
Exception
= AcpiFormatException (AmlStatus);
97
"
Exception
%s during execution\n",
Exception
);
143
Arg[1].String.Pointer = ACPI_CAST_PTR (char,
Exception
);
144
Arg[1].String.Length = strlen (
Exception
);
[
all
...]
/src/external/gpl3/gcc.old/dist/libphobos/src/std/
exception.d
41
Source: $(PHOBOSSRC std/
exception
.d)
44
module std.
exception
;
60
// enforce can throw a custom
exception
69
Exception
e = collectException("abc".to!int);
72
// and just for the
exception
message
76
// assertThrown can be used to assert that an
exception
is thrown
79
// ifThrown can be used to provide a default value if an
exception
is thrown
89
static class MeaCulpa :
Exception
126
If msg is empty, and the thrown
exception
has a
127
non-empty msg field, the
exception
's msg fiel
[
all
...]
/src/external/gpl2/gettext/dist/gettext-tools/src/
msgfmt.cs
25
using System; /* String, Console,
Exception
*/
79
throw new
Exception
("class ResourceWriter is buggy", e);
96
throw new
Exception
("class ResourceWriter is buggy", e);
112
} catch (
Exception
e) {
/src/external/gpl3/gcc.old/dist/gcc/config/riscv/
arch-canonicalize
81
raise
Exception
("Unexpected arch: `%s`" % arch[:5])
123
raise
Exception
("Unsupported extension `%s`" % exts)
147
raise
Exception
("Unsupported extension `%s`" % ext)
/src/external/apache2/llvm/dist/llvm/bindings/python/llvm/tests/
base.py
36
raise
Exception
('No suitable test binaries available!')
/src/external/bsd/ntp/dist/sntp/unity/auto/
unity_test_summary.py
33
raise
Exception
("Empty test result file: %s" % result_file)
107
raise
Exception
("Couldn't parse test results: %s" % summary)
122
raise
Exception
("No *.testpass or *.testfail files found in '%s'" % targets_dir)
134
except
Exception
as e:
/src/external/gpl3/gcc.old/dist/libgcc/config/epiphany/
crtm1reg-r43.S
16
# permissions described in the GCC Runtime Library
Exception
, version
20
# a copy of the GCC Runtime Library
Exception
along with this program;
Completed in 39 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>
Indexes created Tue Feb 24 01:34:59 UTC 2026