Home
last modified time | relevance | path

Searched refs:Exception (Results 1 – 25 of 267) sorted by relevance

1234567891011

/llvm-project-15.0.7/llvm/unittests/ObjectYAML/
H A DMinidumpYAMLTest.cpp172 const minidump::Exception &Exception = Stream.ExceptionRecord; in TEST() local
173 EXPECT_EQ(0x23u, Exception.ExceptionCode); in TEST()
174 EXPECT_EQ(0x5u, Exception.ExceptionFlags); in TEST()
177 EXPECT_EQ(2u, Exception.NumberParameters); in TEST()
215 const minidump::Exception &Exception = Stream.ExceptionRecord; in TEST() local
216 EXPECT_EQ(0x23u, Exception.ExceptionCode); in TEST()
217 EXPECT_EQ(0x5u, Exception.ExceptionFlags); in TEST()
220 EXPECT_EQ(0u, Exception.NumberParameters); in TEST()
271 const minidump::Exception &Exception = Stream.ExceptionRecord; in TEST() local
272 EXPECT_EQ(0x0u, Exception.ExceptionCode); in TEST()
[all …]
/llvm-project-15.0.7/clang/test/SemaCXX/
H A D__try.cpp16 class Exception class
19 Exception(const char* s = "Unknown"){what = strdup(s); } in Exception() function in Exception
20 Exception(const Exception& e ){what = strdup(e.what); } in Exception() function in Exception
21 ~Exception() {free(what); } in ~Exception()
45 throw(Exception("Hardware error: Divide by 0")); in main()
48 catch(const Exception& e) in main()
/llvm-project-15.0.7/lldb/packages/Python/lldbsuite/test/tools/lldb-server/
H A Dlldbgdbserverutils.py416 raise Exception(
419 raise Exception(
450 raise Exception(
466 raise Exception(
526 raise Exception(
529 raise Exception(
559 raise Exception(
563 raise Exception(
583 raise Exception(
633 raise Exception(
[all …]
/llvm-project-15.0.7/llvm/bindings/python/llvm/
H A Dobject.py116 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.')
324 raise Exception('Symbol instance has expired.')
[all …]
/llvm-project-15.0.7/llvm/test/tools/yaml2obj/Minidump/
H A Dexception-missing-parameter.yaml9 - Type: Exception
11 Exception Record:
12 Exception Code: 0x23
13 Exception Flags: 0x5
14 Exception Record: 0x0102030405060708
15 Exception Address: 0x0a0b0c0d0e0f1011
/llvm-project-15.0.7/clang/test/SemaTemplate/
H A Dinstantiate-try-catch.cpp19 struct Exception { struct in PR10232::Templated
21 Exception(const Exception&); // expected-note{{declared private here}}
25 …} catch(Exception e) { // expected-error{{calling a private constructor of class 'PR10232::Templa… in exception()
/llvm-project-15.0.7/clang/test/Import/objc-try-catch/Inputs/
H A DF.m1 @interface Exception interface
8 Exception *e;
11 @catch (Exception *varname) {
18 @catch (Exception *varname1) {
/llvm-project-15.0.7/lldb/test/API/api/multithreaded/
H A Dtest_stop-hook.cpp.template34 throw Exception("invalid target");
38 throw Exception("invalid breakpoint");
57 throw Exception("Couldn't import %SOURCE_DIR%/some_cmd.py");
61 throw Exception("Couldn't launch process.");
63 throw Exception("Process was not stopped");
70 throw Exception("Couldn't add a stop hook.");
117 throw Exception("Didn't get running event");
120 throw Exception("Event wasn't a running event.");
125 throw Exception("Didn't get a stopped event");
128 throw Exception("Event wasn't a stop event.");
[all …]
H A Dcommon.h15 struct Exception : public std::exception struct
18 Exception(std::string ss) : s(ss) {} in Exception() argument
19 virtual ~Exception() throw () { } in ~Exception() argument
H A Dlistener_test.cpp.template34 if (!target.IsValid()) throw Exception("invalid target");
37 if (!breakpoint.IsValid()) throw Exception("invalid breakpoint");
49 throw Exception("Error launching process.");
69 } catch (Exception &e) {
/llvm-project-15.0.7/lldb/test/API/functionalities/postmortem/minidump-new/
H A Dlinux-x86_64_null_signal.yaml10 - Type: Exception
12 Exception Record:
13 Exception Code: 0x00000000
14 Exception Address: 0x0000000000400582
H A Dlinux-x86_64.yaml16 - Type: Exception
18 Exception Record:
19 Exception Code: 0x0000000B
/llvm-project-15.0.7/llvm/test/tools/obj2yaml/Minidump/
H A Dbasic.yaml58 - Type: Exception
60 Exception Record:
61 Exception Code: 0x10
62 Exception Flags: 0x5
63 Exception Record: 0x0102030405060708
64 Exception Address: 0x0A0B0C0D0E0F1011
147 # CHECK-NEXT: - Type: Exception
149 # CHECK-NEXT: Exception Record:
150 # CHECK-NEXT: Exception Code: 0x10
151 # CHECK-NEXT: Exception Flags: 0x5
[all …]
/llvm-project-15.0.7/libcxxabi/
H A DCREDITS.TXT17 D: ARM EHABI Unwind & Exception Handling
38 D: ARM EHABI Unwind & Exception Handling
45 D: ARM EHABI Unwind & Exception Handling
62 D: ARM EHABI Unwind & Exception Handling, Bare-metal
66 D: ARM EHABI Unwind & Exception Handling
70 D: ARM EHABI Unwind & Exception Handling
/llvm-project-15.0.7/llvm/test/CodeGen/X86/
H A Dx32-landingpad.ll4 ; Ensures that landingpad instructions in x32 use the right Exception Pointer
5 ; and Exception Selector registers.
18 ; The Exception Pointer is %eax; the Exception Selector, %edx.
/llvm-project-15.0.7/llvm/lib/ObjectYAML/
H A DMinidumpYAML.cpp72 case StreamType::Exception: in getKind()
73 return StreamKind::Exception; in getKind()
100 case StreamKind::Exception: in create()
380 void yaml::MappingTraits<minidump::Exception>::mapping( in mapping()
381 yaml::IO &IO, minidump::Exception &Exception) { in mapping() argument
382 mapRequiredHex(IO, "Exception Code", Exception.ExceptionCode); in mapping()
388 for (size_t Index = 0; Index < Exception.MaxParameters; ++Index) { in mapping()
393 if (Index < Exception.NumberParameters) in mapping()
410 case MinidumpYAML::Stream::StreamKind::Exception: in mapping()
442 case MinidumpYAML::Stream::StreamKind::Exception: in validate()
[all …]
/llvm-project-15.0.7/llvm/utils/KillTheDoctor/
H A DKillTheDoctor.cpp506 EXCEPTION_DEBUG_INFO &Exception = DebugEvent.u.Exception; in main() local
507 if (Exception.dwFirstChance > 0) { in main()
511 << Exception.ExceptionRecord.ExceptionAddress in main()
514 Exception.ExceptionRecord.ExceptionCode) in main()
515 << " (" << Exception.ExceptionRecord.ExceptionCode << ")\n"; in main()
522 errs() << Exception.ExceptionRecord.ExceptionAddress in main()
525 Exception.ExceptionRecord.ExceptionCode) in main()
526 << " (" << Exception.ExceptionRecord.ExceptionCode in main()
/llvm-project-15.0.7/clang/docs/tools/
H A Ddump_ast_matchers.py16 except Exception as e:
17 raise Exception('Unable to get %s: %s' % (CLASS_INDEX_PAGE_URL, e))
217 raise Exception('Inconsistent documentation for: %s' % name)
240 raise Exception('Inconsistent documentation for: %s' % name)
242 raise Exception('Cannot parse "%s"' % declaration)
260 raise Exception('Inconsistent documentation for: %s' % name)
284 raise Exception('Cannot parse "%s"' % declaration)
304 raise Exception('Did not find allowed result types for: %s' % name)
309 raise Exception('Cannot parse "%s"' % declaration)
326 raise Exception('Did not find allowed result types for: %s' % name)
/llvm-project-15.0.7/llvm/include/llvm/ObjectYAML/
H A DMinidumpYAML.h29 Exception, enumerator
113 : Stream(StreamKind::Exception, minidump::StreamType::Exception), in ExceptionStream()
118 : Stream(StreamKind::Exception, minidump::StreamType::Exception), in ExceptionStream()
122 return S->Kind == StreamKind::Exception; in classof()
262 LLVM_YAML_DECLARE_MAPPING_TRAITS(llvm::minidump::Exception)
/llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/scripts/
H A Dsancov.py29 raise Exception("Wrong bitness: %d" % bits)
61 raise Exception('Bad magic word in %s' % path)
70 raise Exception('File %s is short (< 8 bytes)' % path)
130 raise Exception('Error reading file %s' % path)
143 raise Exception('Wrong bits size in the map')
187 raise Exception('Unexpected raw file name %s' % f)
207 raise Exception('File not found: %s' % binary)
/llvm-project-15.0.7/llvm/test/Transforms/Attributor/
H A Dnoreturn_async.ll18 @"??_C@_0BG@CMNEKHOP@Exception?5NOT?5caught?6?$AA@" = linkonce_odr dso_local unnamed_addr constant …
19 @"??_C@_0BC@NKPAGFFJ@Exception?5caught?6?$AA@" = linkonce_odr dso_local unnamed_addr constant [18 x…
32 …(i8* getelementptr inbounds ([18 x i8], [18 x i8]* @"??_C@_0BC@NKPAGFFJ@Exception?5caught?6?$AA@",…
34 …(i8* getelementptr inbounds ([18 x i8], [18 x i8]* @"??_C@_0BC@NKPAGFFJ@Exception?5caught?6?$AA@",…
91 …(18) getelementptr inbounds ([18 x i8], [18 x i8]* @"??_C@_0BC@NKPAGFFJ@Exception?5caught?6?$AA@",…
94 …(i8* getelementptr inbounds ([18 x i8], [18 x i8]* @"??_C@_0BC@NKPAGFFJ@Exception?5caught?6?$AA@",…
H A Dnoreturn_sync.ll18 @"??_C@_0BG@CMNEKHOP@Exception?5NOT?5caught?6?$AA@" = linkonce_odr dso_local unnamed_addr constant …
19 @"??_C@_0BC@NKPAGFFJ@Exception?5caught?6?$AA@" = linkonce_odr dso_local unnamed_addr constant [18 x…
33 …(i8* getelementptr inbounds ([18 x i8], [18 x i8]* @"??_C@_0BC@NKPAGFFJ@Exception?5caught?6?$AA@",…
35 …(i8* getelementptr inbounds ([18 x i8], [18 x i8]* @"??_C@_0BC@NKPAGFFJ@Exception?5caught?6?$AA@",…
85 …(18) getelementptr inbounds ([18 x i8], [18 x i8]* @"??_C@_0BC@NKPAGFFJ@Exception?5caught?6?$AA@",…
88 …(i8* getelementptr inbounds ([18 x i8], [18 x i8]* @"??_C@_0BC@NKPAGFFJ@Exception?5caught?6?$AA@",…
/llvm-project-15.0.7/llvm/unittests/Object/
H A DMinidumpTest.cpp758 const minidump::Exception &Exception = ExpectedStream->ExceptionRecord; in TEST() local
759 EXPECT_EQ(0x02040302u, Exception.ExceptionCode); in TEST()
760 EXPECT_EQ(0x09080807u, Exception.ExceptionFlags); in TEST()
761 EXPECT_EQ(0x0a09080706050403u, Exception.ExceptionRecord); in TEST()
762 EXPECT_EQ(0x0102030405060708u, Exception.ExceptionAddress); in TEST()
763 EXPECT_EQ(4u, Exception.NumberParameters); in TEST()
764 for (uint64_t index = 0; index < Exception.MaxParameters; ++index) { in TEST()
766 Exception.ExceptionInformation[index]); in TEST()
/llvm-project-15.0.7/clang-tools-extra/clang-include-fixer/tool/
H A Dclang-include-fixer.py71 raise Exception(' Insertion cancelled...')
79 raise Exception()
80 except Exception:
107 raise Exception(stderr)
213 except Exception as error:
/llvm-project-15.0.7/lldb/packages/Python/lldbsuite/test/test_runner/
H A Dprocess_control.py41 except Exception as exception: # pylint: disable=broad-except
86 raise Exception("unexpected units value '{}'".format(units))
88 raise Exception("could not parse TIMEOUT spec '{}'".format(
137 raise Exception("derived class must implement")
222 raise Exception("platform needs to implement")
237 raise Exception("platform needs to implement")
276 raise Exception("exception_exit_details() called on unsupported class")
529 raise Exception(

1234567891011