/external/oprofile/libutil++/tests/ |
utility_tests.cpp | 67 template <typename Throw, typename Catch> 75 catch (Catch const &) { 80 template <typename Throw, typename Catch> 88 catch (Catch const &) { 112 catch (...) {
|
/external/libpng/contrib/visupng/ |
cexcept.h | 69 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 statement, then a copy of the exception will be assigne [all...] |
PngFile.c | 267 Catch (msg) 381 Catch (msg)
|
/external/javassist/src/main/javassist/bytecode/stackmap/ |
BasicBlock.java | 33 public Catch toCatch; 53 public static class Catch { 54 Catch next; 57 Catch(BasicBlock b, int i, Catch c) { 85 Catch th = toCatch; 101 Catch catcher; 391 bb.toCatch = new Catch(handler, type, bb.toCatch);
|
Liveness.java | 78 BasicBlock.Catch handlers = tb.toCatch; 171 BasicBlock.Catch handlers = tb.toCatch;
|
MapMaker.java | 173 BasicBlock.Catch handlers = tb.toCatch; 198 private void traceException(byte[] code, TypedBlock.Catch handler)
|
/external/clang/lib/CodeGen/ |
CGCleanup.h | 39 enum Kind { Cleanup, Catch, Terminate, Filter }; 58 /// after the catch scope. 70 /// for a catch-all. 73 /// The catch handler for this type. 97 : EHScope(Catch), NumHandlers(NumHandlers) { 124 return Scope->getKind() == Catch; 448 case EHScope::Catch: 507 assert(CatchDepth > 0 && "mismatched catch/terminate push/pop"); 519 assert(CatchDepth > 0 && "mismatched catch/terminate push/pop");
|
CGObjCRuntime.cpp | 171 // Jump destination for falling out of catch bodies. 183 // Enter the catch, if there is one. 193 Handler.Block = CGF.createBasicBlock("catch"); 195 // @catch(...) always matches. 197 Handler.TypeInfo = 0; // catch-all 205 EHCatchScope *Catch = CGF.EHStack.pushCatch(Handlers.size()); 207 Catch->setHandler(I, Handlers[I].TypeInfo, Handlers[I].Block); 227 // Enter the catch. 237 // Add a cleanup to leave the catch. 245 // Bind the catch parameter if it exists [all...] |
CGException.cpp | 311 /// presence of a catch-all. 313 // Possibly we should use @llvm.eh.catch.all.value here. 512 llvm::BasicBlock *Handler = createBasicBlock("catch"); 515 // impossible to correctly implement catch-by-reference 530 // No exception decl indicates '...', a catch-all. 544 case EHScope::Catch: 614 // landing pad has a catch-all. 617 /// catch-alls. 690 assert(!CatchAll.isValid() && "EH filter reached after catch-all"); 707 // Terminate scopes are basically catch-alls [all...] |
/external/v8/test/mjsunit/ |
debug-scopes.js | 53 } catch (e) { 143 // Also ignore synthetic variable from catch block. 144 if (!scope.scopeObject().property('.catch-var').isUndefined()) { 781 BeginTest("Catch block 1"); 785 } catch (e) { 792 CheckScopeChain([debug.ScopeType.Catch, 801 BeginTest("Catch block 2"); 805 } catch (e) { 815 debug.ScopeType.Catch, 825 BeginTest("Catch block 3") [all...] |
try.js | 30 function Catch(f, g) { 32 try { r = f(); } catch (o) { return g(o); } 37 try { return f(); } catch (o) { return g(o); } 41 var a = [Catch, CatchReturn] 60 function guard(f) { try { f(); } catch (o) { return o; } } 62 assertEquals(2, (function() { try { throw {}; } catch(e) {} finally { return 2; } })()); 82 } catch (o) { 86 } catch (o) { 109 } catch (o) { 112 } catch (o) [all...] |
big-array-literal.js | 96 } catch (e) { 101 } catch (e) { 107 // Catch stack overflows.
|
big-object-literal.js | 99 } catch (e) { 104 } catch (e) { 110 // Catch stack overflows.
|
/external/webkit/Source/WebCore/bindings/v8/ |
DebuggerScript.js | 199 } catch(e) { 242 case ScopeType.Catch:
|
/external/clang/lib/Parse/ |
ParseObjc.cpp | [all...] |
/external/clang/lib/Rewrite/ |
RewriteObjC.cpp | [all...] |
/external/llvm/bindings/ocaml/llvm/ |
llvm_ocaml.c | [all...] |
/external/clang/lib/AST/ |
StmtPrinter.cpp | 67 void PrintRawCXXCatchStmt(CXXCatchStmt *Catch); 408 Indent() << "@catch("; 432 Indent() << "@catch (...) { /* todo */ } \n"; 459 OS << "catch ("; [all...] |
/external/llvm/include/llvm-c/ |
Core.h | [all...] |
/external/v8/src/ |
d8.js | 106 Catch: 4 }; [all...] |
messages.js | 63 } catch (e) { 163 no_catch_or_finally: ["Missing catch or finally after try"], 214 strict_catch_variable: ["Catch variable may not be eval or arguments in strict mode"], [all...] |
mirror-debugger.js | 197 Catch: 4 }; 1089 } catch (e) { [all...] |
/external/llvm/lib/VMCore/ |
Core.cpp | [all...] |
/external/clang/lib/Sema/ |
TreeTransform.h | [all...] |
/external/clang/include/clang/Sema/ |
Sema.h | [all...] |