Home | History | Annotate | Download | only in el

Lines Matching refs:offset

11  * instanceof, cast, or new: either the bytecode offset or the source code index.
16 * The bytecode offset of the construct.
18 public final int offset;
35 private RelativeLocation(int offset, int index, int type_index) {
36 this.offset = offset;
41 public static RelativeLocation createOffset(int offset, int type_index) {
42 return new RelativeLocation(offset, -1, type_index);
50 return offset>-1;
55 return "#" + offset;
63 int c = Integer.compare(offset, l.offset);
85 * <code>this</code> and <code>o</code> have equal {@link #offset} and {@link #index}.
99 h.mash(offset);