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

12

/external/oprofile/libutil++/tests/
H A Dutility_tests.cpp67 template <typename Throw, typename Catch>
75 catch (Catch const &) {
80 template <typename Throw, typename Catch>
88 catch (Catch const &) {
/external/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 macro
[all...]
H A DPngFile.c267 Catch (msg) function
381 Catch (msg) function
/external/javassist/src/main/javassist/bytecode/stackmap/
H A DBasicBlock.java33 public Catch toCatch;
53 public static class Catch { class in class:BasicBlock
54 Catch next;
57 Catch(BasicBlock b, int i, Catch c) { method in class:BasicBlock.Catch
85 Catch th = toCatch;
101 Catch catcher;
391 bb.toCatch = new Catch(handler, type, bb.toCatch);
H A DLiveness.java78 BasicBlock.Catch handlers = tb.toCatch;
171 BasicBlock.Catch handlers = tb.toCatch;
H A DMapMaker.java173 BasicBlock.Catch handlers = tb.toCatch;
198 private void traceException(byte[] code, TypedBlock.Catch handler)
/external/v8/test/mjsunit/
H A Dtry.js30 function Catch(f, g) { function
41 var a = [Catch, CatchReturn]
H A Ddebug-scopes.js781 BeginTest("Catch block 1");
792 CheckScopeChain([debug.ScopeType.Catch,
801 BeginTest("Catch block 2");
815 debug.ScopeType.Catch,
825 BeginTest("Catch block 3");
839 CheckScopeChain([debug.ScopeType.Catch,
849 BeginTest("Catch block 4");
865 debug.ScopeType.Catch,
/external/clang/lib/CodeGen/
H A DCGCleanup.h94 enum Kind { Cleanup, Catch, Terminate, Filter }; enumerator in enum:clang::CodeGen::EHScope::Kind
172 : EHScope(Catch, enclosingEHScope) {
200 return Scope->getKind() == Catch;
458 case EHScope::Catch:
H A DCGObjCRuntime.cpp203 EHCatchScope *Catch = CGF.EHStack.pushCatch(Handlers.size()); local
205 Catch->setHandler(I, Handlers[I].TypeInfo, Handlers[I].Block);
H A DCGException.cpp595 case EHScope::Catch: {
634 case EHScope::Catch:
727 case EHScope::Catch:
792 case EHScope::Catch:
865 /// - Catch-alls tell us nothing, so we have to conservatively
1236 // Catch the exception if this isn't a catch-all.
/external/webkit/Source/WebCore/bindings/v8/
H A DDebuggerScript.js242 case ScopeType.Catch:
/external/clang/lib/Parse/
H A DParseObjc.cpp1779 StmtResult Catch = Actions.ActOnObjCAtCatchStmt(AtCatchFinallyLoc, local
1783 if (!Catch.isInvalid())
1784 CatchStmts.push_back(Catch.release());
/external/clang/lib/Rewrite/
H A DRewriteObjC.cpp2011 ObjCAtCatchStmt *Catch = S->getCatchStmt(I); local
2012 VarDecl *catchDecl = Catch->getCatchParamDecl();
2018 startLoc = Catch->getLocStart();
2025 if (Catch->hasEllipsis()) {
2027 lastCatchBody = Catch->getCatchBody();
2030 assert(*SM->getCharacterData(Catch->getRParenLoc()) == ')' &&
2053 lastCatchBody = Catch->getCatchBody();
2054 SourceLocation rParenLoc = Catch->getRParenLoc();
/external/v8/src/
H A Dd8.js106 Catch: 4 };
1672 case Debug.ScopeType.Catch:
1673 result += 'Catch, ';
H A Dmirror-debugger.js197 Catch: 4 };
/external/llvm/bindings/ocaml/llvm/
H A Dllvm_ocaml.c1438 LLVMBasicBlockRef Catch,
1441 Wosize_val(Args), Then, Catch, String_val(Name));
1436 llvm_build_invoke_nat(LLVMValueRef Fn, value Args, LLVMBasicBlockRef Then, LLVMBasicBlockRef Catch, value Name, value B) argument
/external/clang/lib/AST/
H A DStmtPrinter.cpp67 void PrintRawCXXCatchStmt(CXXCatchStmt *Catch);
/external/llvm/include/llvm-c/
H A DCore.h861 LLVMBasicBlockRef Then, LLVMBasicBlockRef Catch,
/external/llvm/lib/AsmParser/
H A DLLParser.cpp3537 CT = LandingPadInst::Catch;
3551 if (CT == LandingPadInst::Catch) {
/external/llvm/lib/VMCore/
H A DCore.cpp1782 LLVMBasicBlockRef Then, LLVMBasicBlockRef Catch,
1784 return wrap(unwrap(B)->CreateInvoke(unwrap(Fn), unwrap(Then), unwrap(Catch),
1780 LLVMBuildInvoke(LLVMBuilderRef B, LLVMValueRef Fn, LLVMValueRef *Args, unsigned NumArgs, LLVMBasicBlockRef Then, LLVMBasicBlockRef Catch, const char *Name) argument
/external/clang/lib/Sema/
H A DTreeTransform.h5431 StmtResult Catch = getDerived().TransformStmt(S->getCatchStmt(I)); local
5432 if (Catch.isInvalid())
5434 if (Catch.get() != S->getCatchStmt(I))
5436 CatchStmts.push_back(Catch.release());
/external/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp1177 Vals.push_back(LandingPadInst::Catch);
/external/llvm/include/llvm/
H A DInstructions.h2136 enum ClauseType { Catch, Filter }; enumerator in enum:llvm::LandingPadInst::ClauseType
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp2572 assert((CT != LandingPadInst::Catch ||
2574 "Catch clause has a invalid type!");

Completed in 671 milliseconds

12