Home
last modified time | relevance | path

Searched refs:Catch (Results 1 - 25 of 50) sorted by relevance

12

/third_party/libabigail/tests/lib/
H A Dcatch.hpp3 * Catch v2.13.9
99 namespace Catch { namespace
481 // We need a dummy global operator<< so we can bring it into Catch namespace later
485 namespace Catch { namespace
526 // Bring in operator<< from global namespace into Catch namespace
528 // lookup stop at namespace Catch
545 ::Catch::SourceLineInfo( __FILE__, static_cast<std::size_t>( __LINE__ ) )
548 namespace Catch { namespace
554 } // end namespace Catch
559 namespace{ Catch
569 namespace Catch { global() namespace
602 namespace Catch { global() namespace
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/
H A DWebAssemblyLateEHPrepare.cpp171 MachineInstr *Catch = &*CatchPos; in replaceFuncletReturns() local
172 Register ExnReg = Catch->getOperand(0).getReg(); in replaceFuncletReturns()
276 MachineInstr *Catch = &*CatchPos; in addExceptionExtraction() local
278 if (Catch->getNextNode() != Extract) in addExceptionExtraction()
279 EHPad->insert(Catch->getNextNode(), Extract->removeFromParent()); in addExceptionExtraction()
297 Register ExnReg = Catch->getOperand(0).getReg(); in addExceptionExtraction()
/third_party/cJSON/tests/unity/test/testdata/
H A DCException.h9 #define Catch(a) if (!a) macro
/third_party/unity/test/testdata/
H A DCException.h9 #define Catch(a) if (!a) macro
/third_party/cJSON/tests/unity/test/expectdata/
H A Dtestsample_new1.c15 } Catch(e) { TEST_ASSERT_EQUAL_HEX32_MESSAGE(CEXCEPTION_NONE, e, "Unhandled Exception!"); } \
H A Dtestsample_run1.c15 } Catch(e) { TEST_ASSERT_EQUAL_HEX32_MESSAGE(CEXCEPTION_NONE, e, "Unhandled Exception!"); } \
H A Dtestsample_yaml.c15 } Catch(e) { TEST_ASSERT_EQUAL_HEX32_MESSAGE(CEXCEPTION_NONE, e, "Unhandled Exception!"); } \
H A Dtestsample_mock_cmd.c17 } Catch(e) { TEST_ASSERT_EQUAL_HEX32_MESSAGE(CEXCEPTION_NONE, e, "Unhandled Exception!"); } \
H A Dtestsample_cmd.c15 } Catch(e) { TEST_ASSERT_EQUAL_HEX32_MESSAGE(CEXCEPTION_NONE, e, "Unhandled Exception!"); } \
H A Dtestsample_mock_new1.c17 } Catch(e) { TEST_ASSERT_EQUAL_HEX32_MESSAGE(CEXCEPTION_NONE, e, "Unhandled Exception!"); } \
H A Dtestsample_mock_run1.c17 } Catch(e) { TEST_ASSERT_EQUAL_HEX32_MESSAGE(CEXCEPTION_NONE, e, "Unhandled Exception!"); } \
H A Dtestsample_mock_yaml.c17 } Catch(e) { TEST_ASSERT_EQUAL_HEX32_MESSAGE(CEXCEPTION_NONE, e, "Unhandled Exception!"); } \
/third_party/skia/third_party/externals/libpng/contrib/visupng/
H A Dcexcept.h69 The Try/Catch and Throw statements (described below) implicitly
97 Try/Catch/Throw macros, so it shouldn't be expensive or have side
108 are used by a Try/Catch statement. It does no harm to initialize
112 Try/Catch statement.
116 Catch (expression) statement
118 The Try/Catch/Throw macros are capitalized in order to avoid
122 A Try/Catch statement has a syntax similar to an if/else statement,
127 the else clause is optional, the Catch clause is required. The
132 If a Throw that uses the same exception context as the Try/Catch is
135 Try/Catch statemen
231 #define Catch global() macro
[all...]
H A DPngFile.c279 Catch (msg) function
393 Catch (msg) function
/third_party/unity/test/expectdata/
H A Dtestsample_cmd.c15 } Catch(e) { TEST_ASSERT_EQUAL_HEX32_MESSAGE(CEXCEPTION_NONE, e, "Unhandled Exception!"); } \
H A Dtestsample_mock_cmd.c17 } Catch(e) { TEST_ASSERT_EQUAL_HEX32_MESSAGE(CEXCEPTION_NONE, e, "Unhandled Exception!"); } \
H A Dtestsample_new1.c15 } Catch(e) { TEST_ASSERT_EQUAL_HEX32_MESSAGE(CEXCEPTION_NONE, e, "Unhandled Exception!"); } \
H A Dtestsample_run1.c15 } Catch(e) { TEST_ASSERT_EQUAL_HEX32_MESSAGE(CEXCEPTION_NONE, e, "Unhandled Exception!"); } \
H A Dtestsample_yaml.c15 } Catch(e) { TEST_ASSERT_EQUAL_HEX32_MESSAGE(CEXCEPTION_NONE, e, "Unhandled Exception!"); } \
H A Dtestsample_mock_new1.c17 } Catch(e) { TEST_ASSERT_EQUAL_HEX32_MESSAGE(CEXCEPTION_NONE, e, "Unhandled Exception!"); } \
H A Dtestsample_mock_run1.c17 } Catch(e) { TEST_ASSERT_EQUAL_HEX32_MESSAGE(CEXCEPTION_NONE, e, "Unhandled Exception!"); } \
H A Dtestsample_mock_yaml.c17 } Catch(e) { TEST_ASSERT_EQUAL_HEX32_MESSAGE(CEXCEPTION_NONE, e, "Unhandled Exception!"); } \
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
H A DWinEHPrepare.cpp559 const auto *Catch = cast<CatchPadInst>(CatchBlock->getFirstNonPHI()); in calculateClrEHStateNumbers() local
561 cast<ConstantInt>(Catch->getArgOperand(0))->getZExtValue()); in calculateClrEHStateNumbers()
564 ClrHandlerType::Catch, TypeToken, CatchBlock); in calculateClrEHStateNumbers()
566 for (const User *U : Catch->users()) in calculateClrEHStateNumbers()
571 FuncInfo.EHPadStateMap[Catch] = CatchState; in calculateClrEHStateNumbers()
590 if (const auto *Catch = dyn_cast<CatchPadInst>(Pad)) { in calculateClrEHStateNumbers()
599 UnwindDest = Catch->getCatchSwitch()->getUnwindDest(); in calculateClrEHStateNumbers()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
H A DWinEHFuncInfo.h79 enum class ClrHandlerType { Catch, Finally, Fault, Filter }; member in llvm::ClrHandlerType
/third_party/typescript/tests/baselines/reference/
H A DparserRealSource8.js380 var catchBlock = <Catch>ast;
414 else if (ast.nodeType == NodeType.Catch) {
454 else if (ast.nodeType == NodeType.Catch) {
455 var catchBlock = <Catch>ast;
823 else if (ast.nodeType == NodeType.Catch) {
861 else if (ast.nodeType == NodeType.Catch) {

Completed in 10 milliseconds

12