| /llvm-project/llvm/unittests/ObjectYAML/ |
| H A D | MinidumpYAMLTest.cpp | 149 - Type: Exception in TEST() 151 Exception Record: in TEST() 152 Exception Code: 0x23 in TEST() 153 Exception Flags: 0x5 in TEST() 154 Exception Record: 0x0102030405060708 in TEST() 155 Exception Address: 0x0a0b0c0d0e0f1011 in TEST() 173 const minidump::Exception &Exception = Stream.ExceptionRecord; in TEST() 174 EXPECT_EQ(0x23u, Exception.ExceptionCode); in TEST() 175 EXPECT_EQ(0x5u, Exception in TEST() 172 const minidump::Exception &Exception = Stream.ExceptionRecord; TEST() local 215 const minidump::Exception &Exception = Stream.ExceptionRecord; TEST() local 271 const minidump::Exception &Exception = Stream.ExceptionRecord; TEST() local 322 const minidump::Exception &Exception = Stream.ExceptionRecord; TEST() local [all...] |
| /llvm-project/clang-tools-extra/test/clang-tidy/checkers/bugprone/ |
| H A D | empty-catch.cpp | 5 struct Exception {}; struct 7 struct WarnException : Exception {}; 12 } catch (const Exception &) { in functionWithThrow() 23 } catch (const Exception &) { in functionWithHandling() 43 throw Exception(); in functionWithNewThrow() 57 } catch (const Exception &) { in functionWithComment() 64 } catch (const Exception &) { in functionWithComment2()
|
| /llvm-project/clang/test/SemaCXX/ |
| H A D | __try.cpp | 16 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/lldb/packages/Python/lldbsuite/test/tools/lldb-server/ |
| H A D | lldbgdbserverutils.py | 243 raise Exception("response_packet cannot be None") 262 raise Exception("response_packet cannot be None") 281 raise Exception("endian cannot be None") 283 raise Exception("value_string cannot be None or empty") 301 raise Exception("unsupported endian:{}".format(endian)) 307 raise Exception("endian cannot be None") 309 raise Exception("value_string cannot be None or empty") 323 raise Exception("unsupported endian:{}".format(endian)) 329 raise Exception("endian cannot be None") 354 raise Exception("unsupported endian:{}".format(endian)) [all …]
|
| /llvm-project/lldb/test/API/api/multithreaded/ |
| H A D | test_stop-hook.cpp.template | 34 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 D | test_breakpoint_location_callback.cpp.template | 34 if (!target.IsValid()) throw Exception("invalid target"); 37 if (!breakpoint.IsValid()) throw Exception("invalid breakpoint"); 39 …if(breakpoint.GetNumLocations() != 1) throw Exception("unexpected amount of breakpoint locations"); 50 throw Exception("Breakpoint hit count expected to be 1");
|
| H A D | listener_test.cpp.template | 34 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) {
|
| H A D | common.h | 15 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 D | test_breakpoint_callback.cpp.template | 34 if (!target.IsValid()) throw Exception("invalid target"); 37 if (!breakpoint.IsValid()) throw Exception("invalid breakpoint"); 47 throw Exception("Breakpoint hit count expected to be 1");
|
| /llvm-project/clang/test/SemaTemplate/ |
| H A D | instantiate-try-catch.cpp | 19 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/clang/test/Import/objc-try-catch/Inputs/ |
| H A D | F.m | 1 @interface Exception interface 8 Exception *e; 11 @catch (Exception *varname) { 18 @catch (Exception *varname1) {
|
| /llvm-project/libcxxabi/ |
| H A D | CREDITS.TXT | 17 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/llvm/test/CodeGen/X86/ |
| H A D | x32-landingpad.ll | 4 ; 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/llvm/lib/ObjectYAML/ |
| H A D | MinidumpYAML.cpp | 71 case StreamType::Exception: in getKind() 72 return StreamKind::Exception; in getKind() 101 case StreamKind::Exception: in create() 404 IO.mapRequired("Exception Record", Stream.MDExceptionStream.ExceptionRecord); in mapping() 408 void yaml::MappingTraits<minidump::Exception>::mapping( in mapping() 409 yaml::IO &IO, minidump::Exception &Exception) { in mapping() 410 mapRequiredHex(IO, "Exception Code", Exception.ExceptionCode); in mapping() 411 mapOptionalHex(IO, "Exception Flag in mapping() 381 mapping(yaml::IO & IO,minidump::Exception & Exception) mapping() argument [all...] |
| /llvm-project/clang/test/InstallAPI/ |
| H A D | objcclasses.test | 34 @interface Exception 65 @interface Exception () { 106 "Exception", 111 "Exception" 114 "Exception._ivarFromExtension",
|
| /llvm-project/llvm/utils/KillTheDoctor/ |
| H A D | KillTheDoctor.cpp | 500 EXCEPTION_DEBUG_INFO &Exception = DebugEvent.u.Exception; in main() local 501 if (Exception.dwFirstChance > 0) { in main() 505 << Exception.ExceptionRecord.ExceptionAddress in main() 508 Exception.ExceptionRecord.ExceptionCode) in main() 509 << " (" << Exception.ExceptionRecord.ExceptionCode << ")\n"; in main() 516 errs() << Exception.ExceptionRecord.ExceptionAddress in main() 519 Exception.ExceptionRecord.ExceptionCode) in main() 520 << " (" << Exception.ExceptionRecord.ExceptionCode in main()
|
| /llvm-project/llvm/test/CodeGen/SystemZ/ |
| H A D | zos-landingpad.ll | 3 ; Ensures that landingpad instructions use the right Exception Pointer 4 ; and Exception Selector registers, and that the exception table is emitted. 21 ; The Exception Pointer is %r1; the Exception Selector, %r2.
|
| /llvm-project/llvm/include/llvm/ObjectYAML/ |
| H A D | MinidumpYAML.h | 29 Exception, enumerator 132 : Stream(StreamKind::Exception, minidump::StreamType::Exception), in MemoryInfoListStream() 137 : Stream(StreamKind::Exception, minidump::StreamType::Exception), in MemoryInfoListStream() 141 return S->Kind == StreamKind::Exception; in classof() 287 LLVM_YAML_DECLARE_MAPPING_TRAITS(llvm::minidump::Exception)
|
| /llvm-project/llvm/test/Transforms/Attributor/ |
| H A D | noreturn_sync.ll | 18 @"??_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… 29 …%call2 = call i32 (ptr, ...) @printf(ptr @"??_C@_0BC@NKPAGFFJ@Exception?5caught?6?$AA@") nofree no… 31 %call3 = call i32 (ptr, ...) @printf(ptr @"??_C@_0BC@NKPAGFFJ@Exception?5caught?6?$AA@") 78 %call3 = call i32 (ptr, ...) @printf(ptr @"??_C@_0BC@NKPAGFFJ@Exception?5caught?6?$AA@")
|
| H A D | noreturn_async.ll | 18 @"??_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… 29 …%call2 = call i32 (ptr, ...) @printf(ptr @"??_C@_0BC@NKPAGFFJ@Exception?5caught?6?$AA@") nofree no… 31 %call3 = call i32 (ptr, ...) @printf(ptr @"??_C@_0BC@NKPAGFFJ@Exception?5caught?6?$AA@") 85 %call3 = call i32 (ptr, ...) @printf(ptr @"??_C@_0BC@NKPAGFFJ@Exception?5caught?6?$AA@")
|
| /llvm-project/compiler-rt/lib/sanitizer_common/scripts/ |
| H A D | sancov.py | 31 raise Exception("Wrong bitness: %d" % bits) 74 raise Exception("Bad magic word in %s" % path) 84 raise Exception("File %s is short (< 8 bytes)" % path) 147 raise Exception("Error reading file %s" % path) 161 raise Exception("Wrong bits size in the map") 221 raise Exception("Unexpected raw file name %s" % f) 245 raise Exception("File not found: %s" % binary)
|
| /llvm-project/llvm/unittests/Object/ |
| H A D | MinidumpTest.cpp | 725 // Exception Stream in TEST() 728 // Exception Record in TEST() 731 8, 7, 6, 5, 4, 3, 2, 1, // Exception address in TEST() 761 const minidump::Exception &Exception = ExpectedStream->ExceptionRecord; in TEST() 762 EXPECT_EQ(0x02040302u, Exception.ExceptionCode); in TEST() 763 EXPECT_EQ(0x09080807u, Exception.ExceptionFlags); in TEST() 764 EXPECT_EQ(0x0a09080706050403u, Exception.ExceptionRecord); in TEST() 765 EXPECT_EQ(0x0102030405060708u, Exception.ExceptionAddress); in TEST() 766 EXPECT_EQ(4u, Exception in TEST() 758 const minidump::Exception &Exception = ExpectedStream->ExceptionRecord; TEST() local [all...] |
| /llvm-project/clang-tools-extra/clang-include-fixer/tool/ |
| H A D | clang-include-fixer.py | 70 raise Exception(" Insertion cancelled...") 79 raise Exception() 80 except Exception: 115 raise Exception(stderr) 237 except Exception as error:
|
| /llvm-project/lldb/packages/Python/lldbsuite/test/test_runner/ |
| H A D | process_control.py | 41 except Exception as exception: # pylint: disable=broad-except 88 raise Exception("unexpected units value '{}'".format(units)) 90 raise Exception("could not parse TIMEOUT spec '{}'".format(timeout)) 138 raise Exception("derived class must implement") 223 raise Exception("platform needs to implement") 238 raise Exception("platform needs to implement") 277 raise Exception("exception_exit_details() called on unsupported class") 537 raise Exception(
|
| /llvm-project/clang/docs/tools/ |
| H A D | dump_ast_matchers.py | 18 except Exception as e: 260 raise Exception("Inconsistent documentation for: %s" % name) 287 raise Exception("Inconsistent documentation for: %s" % name) 289 raise Exception('Cannot parse "%s"' % declaration) 314 raise Exception("Inconsistent documentation for: %s" % name) 342 raise Exception('Cannot parse "%s"' % declaration) 369 raise Exception("Did not find allowed result types for: %s" % name) 374 raise Exception('Cannot parse "%s"' % declaration) 398 raise Exception("Did not find allowed result types for: %s" % name)
|