OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:catches
(Results
1 - 25
of
143
) sorted by null
1
2
3
4
5
6
/dalvik/dx/src/com/android/dx/rop/code/
ThrowingInsn.java
31
private final TypeList
catches
;
field in class:ThrowingInsn
34
* Gets the string form of a register spec list to be used as a
catches
37
* @param
catches
{@code non-null;} the
catches
list
40
public static String toCatchString(TypeList
catches
) {
45
int sz =
catches
.size();
48
sb.append(
catches
.getType(i).toHuman());
60
* @param
catches
{@code non-null;} list of exceptions caught
64
TypeList
catches
) {
71
if (
catches
== null)
[
all
...]
ThrowingCstInsn.java
30
private final TypeList
catches
;
field in class:ThrowingCstInsn
38
* @param
catches
{@code non-null;} list of exceptions caught
43
TypeList
catches
, Constant cst) {
50
if (
catches
== null) {
51
throw new NullPointerException("
catches
== null");
54
this.
catches
=
catches
;
61
ThrowingInsn.toCatchString(
catches
);
67
return
catches
;
80
getSources(),
catches
.withAddedType(type)
[
all
...]
/dalvik/dx/tests/096-dex-giant-catch/
expected.txt
0
catches
/dalvik/dx/src/com/android/dx/cf/attrib/
AttCode.java
41
private final ByteCatchList
catches
;
field in class:AttCode
52
* @param
catches
{@code non-null;} the exception table
56
ByteCatchList
catches
, AttributeList attributes) {
72
if (
catches
.isMutable()) {
73
throw new MutabilityException("
catches
.isMutable()");
77
throw new NullPointerException("
catches
== null");
92
this.
catches
=
catches
;
97
return 10 + code.byteLength() +
catches
.byteLength() +
134
return
catches
;
[
all
...]
/dalvik/dx/src/com/android/dx/cf/code/
ByteBlock.java
40
private final ByteCatchList
catches
;
field in class:ByteBlock
52
* @param
catches
{@code non-null;} list of exceptions caught and their
56
ByteCatchList
catches
) {
82
if (
catches
== null) {
83
throw new NullPointerException("
catches
== null");
90
this.
catches
=
catches
;
143
return
catches
;
RopperMachine.java
79
/** {@code non-null;}
catches
for the block currently being processed */
80
private TypeList
catches
;
field in class:RopperMachine
82
/** whether the
catches
have been used in an instruction */
143
this.
catches
= null;
183
* {@link #insns} list, set {@link #
catches
}, reset whether it has
187
public void startBlock(TypeList
catches
) {
188
this.
catches
=
catches
;
201
* Gets whether {@link #
catches
} was used. This indicates that the
204
* @return whether {@code
catches
} has been use
[
all
...]
BasicBlocker.java
329
ByteCatchList
catches
= method.getCatches();
local
330
int catchSz =
catches
.size();
355
ByteCatchList.Item item =
catches
.get(i);
434
ByteCatchList
catches
= method.getCatches().listFor(offset);
local
435
catchLists[offset] =
catches
;
436
targetLists[offset] =
catches
.toTargetList(nextIsLive ? next : -1);
/dalvik/dx/tests/061-dex-try-catch/
expected.txt
18
catches
31
catches
46
catches
/dalvik/dx/src/com/android/dx/dex/file/
CodeItem.java
57
/** {@code null-ok;} the
catches
, if needed; set in {@link #addContents} */
58
private CatchStructs
catches
;
field in class:CodeItem
105
this.
catches
= null;
129
catches
= new CatchStructs(code);
177
if (
catches
!= null) {
179
out.println("
catches
");
180
catches
.debugPrint(out, prefix2);
197
* In order to get the
catches
and insns, all the code's
210
if (
catches
!= null) {
211
catches
.encode(file)
[
all
...]
/dalvik/dx/tests/055-dex-explicit-throw/
expected.txt
14
catches
/dalvik/dx/src/com/android/dx/dex/code/
CatchBuilder.java
35
* Gets whether this instance has any
catches
at all (either typed
38
* @return whether this instance has any
catches
at all
DalvCode.java
51
private CatchTable
catches
;
field in class:DalvCode
94
this.
catches
= null;
111
catches
= unprocessedCatches.build();
151
* Gets whether this instance has any
catches
at all (either typed
154
* @return whether this instance has any
catches
at all
196
return
catches
;
StdCatchBuilder.java
86
TypeList
catches
= block.getLastInsn().getCatches();
local
87
if (
catches
.size() != 0) {
103
TypeList
catches
= block.getLastInsn().getCatches();
local
104
int catchSize =
catches
.size();
107
result.add(
catches
.getType(j));
221
TypeList
catches
= block.getLastInsn().getCatches();
local
222
int catchSize =
catches
.size();
246
Type type =
catches
.getType(i);
256
CstType oneType = new CstType(
catches
.getType(i));
/external/gtest/test/
gtest_nc.cc
58
// Tests that the compiler
catches
the typo when a user declares a
69
// Tests that the compiler
catches
the typo when a user calls Setup()
82
// Tests that the compiler
catches
the typo when a user declares a
93
// Tests that the compiler
catches
the typo when a user calls Setup()
107
// Tests that the compiler
catches
using the wrong test case name in
126
// Tests that the compiler
catches
using the wrong test case name in
145
// Tests that the compiler
catches
using the wrong test case name in
166
// Tests that the compiler
catches
instantiating TYPED_TEST_CASE_P
/dalvik/dx/tests/076-dex-synch-and-stack/
expected.txt
16
catches
/dalvik/dx/tests/046-dex-exceptions/
expected.txt
15
catches
43
catches
/dalvik/dx/tests/066-dex-try-catch-rethrow/
expected.txt
16
catches
34
catches
53
catches
72
catches
92
catches
/dalvik/dx/tests/067-dex-switch-and-try/
expected.txt
43
catches
70
catches
97
catches
/dalvik/dx/tests/062-dex-synch-method/
expected.txt
22
catches
73
catches
96
catches
143
catches
/packages/apps/Mms/tests/src/com/android/mms/ui/
ConversationListTests.java
46
* have been loaded. This
catches
various race conditions.
/dalvik/dx/tests/080-dex-exception-tables/
expected.txt
19
catches
42
catches
76
catches
116
catches
152
catches
187
catches
215
catches
240
catches
275
catches
/external/opencore/oscl/oscl/osclerror/src/
oscl_error_imp_cppexceptions.h
56
//_PV_TRAP
catches
Leaves.
69
//_PV_TRAP_NO_TLS
catches
Leaves.
/dalvik/dx/tests/069-dex-source-position/
expected.txt
31
catches
65
catches
115
catches
/external/webkit/WebCore/manual-tests/
window-open-features-parsing.html
10
- the trailing comma
catches
a previous mistake i made reading past the end of the string
/external/opencore/doc/oscl_html/
oscl__error__imp__cppexceptions_8h-source.html
37
00039 <span class="comment">//_PV_TRAP
catches
Leaves.</span>
50
00052 <span class="comment">//_PV_TRAP_NO_TLS
catches
Leaves.</span>
Completed in 141 milliseconds
1
2
3
4
5
6