HomeSort by relevance Sort by last modified time
    Searched defs:Catch (Results 1 - 10 of 10) sorted by null

  /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);
  /external/v8/test/mjsunit/
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...]
  /external/clang/lib/CodeGen/
CGCleanup.h 94 enum Kind { Cleanup, Catch, Terminate, Filter };
135 /// after the catch scope.
145 /// for a catch-all.
148 /// The catch handler for this type.
172 : EHScope(Catch, enclosingEHScope) {
200 return Scope->getKind() == Catch;
458 case EHScope::Catch:
CGObjCRuntime.cpp 169 // Jump destination for falling out of catch bodies.
181 // Enter the catch, if there is one.
191 Handler.Block = CGF.createBasicBlock("catch");
193 // @catch(...) always matches.
195 Handler.TypeInfo = 0; // catch-all
203 EHCatchScope *Catch = CGF.EHStack.pushCatch(Handlers.size());
205 Catch->setHandler(I, Handlers[I].TypeInfo, Handlers[I].Block);
225 // Enter the catch.
235 // Add a cleanup to leave the catch.
243 // Bind the catch parameter if it exists
    [all...]
  /external/clang/lib/Parse/
ParseObjc.cpp     [all...]
  /external/llvm/include/llvm/
Instructions.h     [all...]
  /external/clang/lib/Rewrite/
RewriteObjC.cpp     [all...]
  /external/clang/lib/Sema/
TreeTransform.h     [all...]

Completed in 4889 milliseconds