Home
last modified time | relevance | path

Searched refs:Catch (Results 1 – 25 of 63) sorted by relevance

123

/freebsd/contrib/bsnmp/tests/
H A Dcatch.hpp95 namespace Catch { namespace
461 namespace Catch { namespace
521 ::Catch::SourceLineInfo( __FILE__, static_cast<std::size_t>( __LINE__ ) )
524 namespace Catch { namespace
535 …namespace{ Catch::RegistrarForTagAliases INTERNAL_CATCH_UNIQUE_NAME( AutoRegisterTagAlias )( alias…
545 namespace Catch { namespace
578 namespace Catch { namespace
662 constexpr auto operator "" _catch_sr( char const* rawChars, std::size_t size ) noexcept -> Catch::S… in operator ""_catch_sr()
663 return Catch::StringRef( rawChars, size ); in operator ""_catch_sr()
825 void reg_test(TypeList<Type>, Catch::NameAndTags nameAndTags)\
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyLateEHPrepare.cpp186 for (auto *Catch : Catches) { in hoistCatches() local
187 MachineBasicBlock *EHPad = getMatchingEHPad(Catch); in hoistCatches()
195 if (InsertPos == Catch) in hoistCatches()
198 EHPad->insert(InsertPos, Catch->removeFromParent()); in hoistCatches()
314 auto *Catch = WebAssembly::findCatch(EHPad); in addCatchRefsAndThrowRefs() local
315 auto *InsertPos = Catch->getIterator()->getNextNode(); in addCatchRefsAndThrowRefs()
317 if (Catch->getOpcode() == WebAssembly::CATCH) { in addCatchRefsAndThrowRefs()
318 MachineInstrBuilder MIB = BuildMI(*EHPad, InsertPos, Catch->getDebugLoc(), in addCatchRefsAndThrowRefs()
321 for (const auto &Def : Catch->defs()) in addCatchRefsAndThrowRefs()
326 for (const auto &Use : Catch->uses()) { in addCatchRefsAndThrowRefs()
[all …]
H A DWebAssemblyISelDAGToDAG.cpp216 MachineSDNode *Catch = in Select() local
226 ReplaceNode(Node, Catch); in Select()
H A DWebAssemblyCFGStackify.cpp861 auto *Catch = WebAssembly::findCatch(&MBB); in placeTryTableMarker() local
862 switch (Catch->getOpcode()) { in placeTryTableMarker()
869 for (const auto &Use : Catch->uses()) { in placeTryTableMarker()
884 for (const auto &Use : Catch->uses()) { in placeTryTableMarker()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGCleanup.h47 enum Kind { Cleanup, Catch, Terminate, Filter }; enumerator
198 : EHScope(Catch, enclosingEHScope) {
242 return Scope->getKind() == Catch;
582 case EHScope::Catch:
H A DCGCoroutine.cpp349 auto *Catch = new (CGF.getContext()) in emitSuspendExpression() local
353 TryStmt = CXXTryStmt::Create(CGF.getContext(), Loc, TryBody, Catch); in emitSuspendExpression()
924 CXXCatchStmt Catch(Loc, /*exDecl=*/nullptr, in EmitCoroutineBody() local
927 CXXTryStmt::Create(getContext(), Loc, S.getBody(), &Catch); in EmitCoroutineBody()
H A DCGObjCRuntime.cpp185 EHCatchScope *Catch = CGF.EHStack.pushCatch(Handlers.size()); in EmitTryCatchStmt() local
187 Catch->setHandler(I, { Handlers[I].TypeInfo, Handlers[I].Flags }, Handlers[I].Block); in EmitTryCatchStmt()
H A DCGException.cpp688 case EHScope::Catch: { in getEHDispatchBlock()
740 case EHScope::Catch: in getFuncletEHDispatchBlock()
767 case EHScope::Catch: in isNonEHScope()
835 case EHScope::Catch: in EmitLandingPad()
898 case EHScope::Catch: in EmitLandingPad()
/freebsd/.github/
H A Dpath-rules.txt6 # Catch all
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DWinEHPrepare.cpp732 const auto *Catch = cast<CatchPadInst>(CatchBlock->getFirstNonPHIIt()); in calculateClrEHStateNumbers() local
734 cast<ConstantInt>(Catch->getArgOperand(0))->getZExtValue()); in calculateClrEHStateNumbers()
737 ClrHandlerType::Catch, TypeToken, CatchBlock); in calculateClrEHStateNumbers()
739 for (const User *U : Catch->users()) in calculateClrEHStateNumbers()
744 FuncInfo.EHPadStateMap[Catch] = CatchState; in calculateClrEHStateNumbers()
762 if (const auto *Catch = dyn_cast<CatchPadInst>(Pad)) { in calculateClrEHStateNumbers() local
771 UnwindDest = Catch->getCatchSwitch()->getUnwindDest(); in calculateClrEHStateNumbers()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DWinEHFuncInfo.h79 enum class ClrHandlerType { Catch, Finally, Fault, Filter }; enumerator
/freebsd/sys/contrib/device-tree/src/arm64/xilinx/
H A Dzynqmp-sm-k26-revA.dts173 label = "ImgSel Image A Catch";
183 label = "ImgSel Image B Catch";
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaFunctionEffects.cpp1131 bool VisitCXXCatchStmt(CXXCatchStmt *Catch) override { in VisitCXXCatchStmt()
1134 Catch->getCatchLoc()); in VisitCXXCatchStmt()
1145 bool VisitObjCAtCatchStmt(ObjCAtCatchStmt *Catch) override { in VisitObjCAtCatchStmt()
1148 Catch->getAtCatchLoc()); in VisitObjCAtCatchStmt()
H A DSemaExceptionSpec.cpp1606 const ObjCAtCatchStmt *Catch = TS->getCatchStmt(I - 1); in canThrow() local
1607 CT = mergeCanThrow(CT, canThrow(Catch)); in canThrow()
1609 if (Catch->hasEllipsis()) in canThrow()
/freebsd/usr.sbin/bsdconfig/share/
H A Dmustberoot.subr176 # Catch X11-related errors
316 # Catch X11-related errors
/freebsd/contrib/wpa/wpa_supplicant/doc/docbook/
H A Dwpa_supplicant.conf.sgml148 <para>Catch all example that allows more or less all
/freebsd/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp1831 ObjCAtCatchStmt *Catch = S->getCatchStmt(I); in RewriteObjCTryStmt() local
1832 VarDecl *catchDecl = Catch->getCatchParamDecl(); in RewriteObjCTryStmt()
1838 startLoc = Catch->getBeginLoc(); in RewriteObjCTryStmt()
1845 if (Catch->hasEllipsis()) { in RewriteObjCTryStmt()
1847 lastCatchBody = Catch->getCatchBody(); in RewriteObjCTryStmt()
1850 assert(*SM->getCharacterData(Catch->getRParenLoc()) == ')' && in RewriteObjCTryStmt()
1873 lastCatchBody = Catch->getCatchBody(); in RewriteObjCTryStmt()
1874 SourceLocation rParenLoc = Catch->getRParenLoc(); in RewriteObjCTryStmt()
H A DRewriteModernObjC.cpp1959 for (ObjCAtCatchStmt *Catch : S->catch_stmts()) { in RewriteObjCTryStmt()
1960 VarDecl *catchDecl = Catch->getCatchParamDecl(); in RewriteObjCTryStmt()
1962 startLoc = Catch->getBeginLoc(); in RewriteObjCTryStmt()
1972 ConvertSourceLocationToLineDirective(Catch->getBeginLoc(), Result); in RewriteObjCTryStmt()
1976 SourceLocation rParenLoc = Catch->getRParenLoc(); in RewriteObjCTryStmt()
1993 SourceLocation lBraceLoc = Catch->getCatchBody()->getBeginLoc(); in RewriteObjCTryStmt()
/freebsd/crypto/heimdal/
H A DChangeLog.2006380 * kdc/pkinit.c: Catch error string from hx509_cms_verify_signed.
970 * kdc/digest.c: Catch more error, add SASL DIGEST MD5.
972 * lib/krb5/digest.c: Catch more error.
1397 * lib/krb5/pkinit.c: Catch using hx509 null DH and print a more
1588 * kdc/kerberos5.c: Catch the case where the client sends no
H A DChangeLog439 * lib/krb5/verify_krb5_conf.c: Catch deprecated entries.
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseObjc.cpp2320 StmtResult Catch = Actions.ObjC().ActOnObjCAtCatchStmt( in ParseObjCTryStmt() local
2322 if (!Catch.isInvalid()) in ParseObjCTryStmt()
2323 CatchStmts.push_back(Catch.get()); in ParseObjCTryStmt()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSemaObjC.h71 MultiStmtArg Catch, Stmt *Finally);
/freebsd/crypto/openssl/doc/man3/
H A DSSL_CTX_set_verify.pod287 * Catch a too long certificate chain. The depth limit set using
/freebsd/crypto/heimdal/lib/gssapi/
H A DChangeLog8 * ntlm/init_sec_context.c: Catch error
10 * krb5/inquire_sec_context_by_oid.c: Catch store failure.
293 * ntlm/accept_sec_context.c: Catch errors and return the up the
453 * mech/gss_pseudo_random.c: Catch error from underlaying mech on
739 * ntlm/accept_sec_context.c: Catch more error errors.
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DWinException.cpp1314 case ClrHandlerType::Catch: in emitCLRExceptionTable()

123