Searched refs:Catch (Results 1 - 25 of 32) 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.js840 BeginTest("Catch block 1");
851 CheckScopeChain([debug.ScopeType.Catch,
860 BeginTest("Catch block 2");
874 debug.ScopeType.Catch,
884 BeginTest("Catch block 3");
898 CheckScopeChain([debug.ScopeType.Catch,
908 BeginTest("Catch block 4");
924 debug.ScopeType.Catch,
936 BeginTest("Catch block 5");
938 CheckScopeChain([debug.ScopeType.Catch,
[all...]
/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.cpp211 EHCatchScope *Catch = CGF.EHStack.pushCatch(Handlers.size()); local
213 Catch->setHandler(I, Handlers[I].TypeInfo, Handlers[I].Block);
H A DCGException.cpp625 case EHScope::Catch: {
664 case EHScope::Catch:
756 case EHScope::Catch:
821 case EHScope::Catch:
894 /// - Catch-alls tell us nothing, so we have to conservatively
1275 // 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/AST/
H A DStmtPrinter.cpp69 void PrintRawCXXCatchStmt(CXXCatchStmt *Catch);
/external/clang/lib/Parse/
H A DParseObjc.cpp1865 StmtResult Catch = Actions.ActOnObjCAtCatchStmt(AtCatchFinallyLoc, local
1869 if (!Catch.isInvalid())
1870 CatchStmts.push_back(Catch.release());
/external/clang/lib/Rewrite/Frontend/
H A DRewriteObjC.cpp1858 ObjCAtCatchStmt *Catch = S->getCatchStmt(I); local
1859 VarDecl *catchDecl = Catch->getCatchParamDecl();
1865 startLoc = Catch->getLocStart();
1872 if (Catch->hasEllipsis()) {
1874 lastCatchBody = Catch->getCatchBody();
1877 assert(*SM->getCharacterData(Catch->getRParenLoc()) == ')' &&
1900 lastCatchBody = Catch->getCatchBody();
1901 SourceLocation rParenLoc = Catch->getRParenLoc();
H A DRewriteModernObjC.cpp1997 ObjCAtCatchStmt *Catch = S->getCatchStmt(I); local
1998 VarDecl *catchDecl = Catch->getCatchParamDecl();
2000 startLoc = Catch->getLocStart();
2009 ConvertSourceLocationToLineDirective(Catch->getLocStart(), Result);
2013 SourceLocation rParenLoc = Catch->getRParenLoc();
2030 SourceLocation lBraceLoc = Catch->getCatchBody()->getLocStart();
/external/v8/src/
H A Dd8.js111 Catch: 4,
1684 case Debug.ScopeType.Catch:
1685 result += 'Catch, ';
H A Dmirror-debugger.js198 Catch: 4,
/external/llvm/bindings/ocaml/llvm/
H A Dllvm_ocaml.c1440 LLVMBasicBlockRef Catch,
1443 Wosize_val(Args), Then, Catch, String_val(Name));
1438 llvm_build_invoke_nat(LLVMValueRef Fn, value Args, LLVMBasicBlockRef Then, LLVMBasicBlockRef Catch, value Name, value B) argument
/external/llvm/include/llvm-c/
H A DCore.h2331 LLVMBasicBlockRef Then, LLVMBasicBlockRef Catch,
/external/llvm/lib/IR/
H A DCore.cpp1853 LLVMBasicBlockRef Then, LLVMBasicBlockRef Catch,
1855 return wrap(unwrap(B)->CreateInvoke(unwrap(Fn), unwrap(Then), unwrap(Catch),
1851 LLVMBuildInvoke(LLVMBuilderRef B, LLVMValueRef Fn, LLVMValueRef *Args, unsigned NumArgs, LLVMBasicBlockRef Then, LLVMBasicBlockRef Catch, const char *Name) argument
/external/clang/lib/Sema/
H A DTreeTransform.h5634 StmtResult Catch = getDerived().TransformStmt(S->getCatchStmt(I)); local
5635 if (Catch.isInvalid())
5637 if (Catch.get() != S->getCatchStmt(I))
5639 CatchStmts.push_back(Catch.release());
/external/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp1361 Vals.push_back(LandingPadInst::Catch);
/external/llvm/lib/AsmParser/
H A DLLParser.cpp3861 CT = LandingPadInst::Catch;
3875 if (CT == LandingPadInst::Catch) {
/external/marisa-trie/
H A Dconfigure4696 /* Catch a bug in IBM AIX xlc compiler version 6.0.0.0
4714 /* Catch a bug in an HP-UX C compiler. See

Completed in 682 milliseconds

12