OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:handlerPc
(Results
1 - 6
of
6
) sorted by null
/dalvik/dexgen/src/com/android/dexgen/rop/
ByteCatchList.java
84
* @param
handlerPc
{@code >= 0;} the pc of the exception handler
88
public void set(int n, int startPc, int endPc, int
handlerPc
,
90
set0(n, new Item(startPc, endPc,
handlerPc
, exceptionClass));
231
private final int
handlerPc
;
244
* @param
handlerPc
{@code >= 0;} the pc of the exception handler
248
public Item(int startPc, int endPc, int
handlerPc
,
258
if (
handlerPc
< 0) {
259
throw new IllegalArgumentException("
handlerPc
< 0");
264
this.
handlerPc
=
handlerPc
;
[
all
...]
/dalvik/dx/src/com/android/dx/cf/code/
ByteCatchList.java
84
* @param
handlerPc
{@code >= 0;} the pc of the exception handler
88
public void set(int n, int startPc, int endPc, int
handlerPc
,
90
set0(n, new Item(startPc, endPc,
handlerPc
, exceptionClass));
231
private final int
handlerPc
;
244
* @param
handlerPc
{@code >= 0;} the pc of the exception handler
248
public Item(int startPc, int endPc, int
handlerPc
,
258
if (
handlerPc
< 0) {
259
throw new IllegalArgumentException("
handlerPc
< 0");
264
this.
handlerPc
=
handlerPc
;
[
all
...]
/external/javassist/src/main/javassist/bytecode/
ExceptionTable.java
27
int
handlerPc
;
33
handlerPc
= handle;
132
* Returns <code>
handlerPc
</code> of the <i>n</i>-th entry.
136
public int
handlerPc
(int nth) {
138
return e.
handlerPc
;
142
* Sets <code>
handlerPc
</code> of the <i>n</i>-th entry.
149
e.
handlerPc
= value;
188
e.
handlerPc
+ offset, e.catchType);
198
* @param handler <code>
handlerPc
</code>
212
* @param handler <code>
handlerPc
</code
[
all
...]
/external/javassist/src/main/javassist/expr/
Handler.java
35
super(et.
handlerPc
(nth), it, declaring, m);
126
int oldHandler = etable.
handlerPc
(index);
/dalvik/dx/src/com/android/dx/cf/direct/
StdAttributeFactory.java
276
int
handlerPc
= bytes.getUnsignedShort(offset + 4);
279
catches.set(i, startPc, endPc,
handlerPc
, catchType);
283
" -> " + Hex.u2(
handlerPc
) + " " +
/prebuilt/sdk/tools/lib/
dx.jar
Completed in 555 milliseconds