OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
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/clang/lib/Parse/
ParseObjc.cpp
[
all
...]
/external/clang/lib/Rewrite/
RewriteObjC.cpp
[
all
...]
/external/clang/lib/Sema/
TreeTransform.h
[
all
...]
Completed in 212 milliseconds