OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:endPc
(Results
1 - 9
of
9
) sorted by null
/dalvik/dexgen/src/com/android/dexgen/rop/
ByteCatchList.java
82
* @param
endPc
{@code >= startPc;} the end pc (exclusive) of the
88
public void set(int n, int startPc, int
endPc
, int handlerPc,
90
set0(n, new Item(startPc,
endPc
, handlerPc, exceptionClass));
228
private final int
endPc
;
242
* @param
endPc
{@code >= startPc;} the end pc (exclusive) of the
248
public Item(int startPc, int
endPc
, int handlerPc,
254
if (
endPc
< startPc) {
255
throw new IllegalArgumentException("
endPc
< startPc");
263
this.
endPc
=
endPc
;
[
all
...]
/dalvik/dx/src/com/android/dx/cf/code/
ByteCatchList.java
82
* @param
endPc
{@code >= startPc;} the end pc (exclusive) of the
88
public void set(int n, int startPc, int
endPc
, int handlerPc,
90
set0(n, new Item(startPc,
endPc
, handlerPc, exceptionClass));
228
private final int
endPc
;
242
* @param
endPc
{@code >= startPc;} the end pc (exclusive) of the
248
public Item(int startPc, int
endPc
, int handlerPc,
254
if (
endPc
< startPc) {
255
throw new IllegalArgumentException("
endPc
< startPc");
263
this.
endPc
=
endPc
;
[
all
...]
/external/javassist/src/main/javassist/bytecode/
ExceptionTable.java
26
int
endPc
;
32
endPc
= end;
111
* Returns <code>
endPc
</code> of the <i>n</i>-th entry.
115
public int
endPc
(int nth) {
117
return e.
endPc
;
121
* Sets <code>
endPc
</code> of the <i>n</i>-th entry.
128
e.
endPc
= value;
187
add(index, e.startPc + offset, e.
endPc
+ offset,
197
* @param end <code>
endPc
</code>
211
* @param end <code>
endPc
</code
[
all
...]
ClassFileWriter.java
465
public void addCatch(int startPc, int
endPc
, int handlerPc, int catchType) {
468
output.writeShort(
endPc
);
/external/javassist/src/main/javassist/expr/
Expr.java
141
if (et.startPc(i) <= pos && pos < et.
endPc
(i)) {
/dalvik/dx/src/com/android/dx/cf/direct/
StdAttributeFactory.java
274
int
endPc
= bytes.getUnsignedShort(offset + 2);
278
catches.set(i, startPc,
endPc
, handlerPc, catchType);
281
Hex.u2(startPc) + ".." + Hex.u2(
endPc
) +
/external/javassist/src/main/javassist/bytecode/analysis/
Analyzer.java
227
exceptions[i] = new ExceptionInfo(table.startPc(i), table.
endPc
(i), table.handlerPc(i), type);
/external/javassist/src/main/javassist/bytecode/stackmap/
BasicBlock.java
384
int end = et.
endPc
(i);
/external/javassist/src/main/javassist/compiler/
CodeGen.java
553
int
endPc
= bytecode.currentPc();
555
defaultPc =
endPc
;
559
patchGoto(breakList,
endPc
);
[
all
...]
Completed in 472 milliseconds