• Home
  • Raw
  • Download

Lines Matching refs:exclusive

448     private int insert0(int pos, byte[] code, boolean exclusive)  in insert0()  argument
456 pos = insertGapAt(pos, len, exclusive).position; in insert0()
592 public Gap insertGapAt(int pos, int length, boolean exclusive) in insertGapAt() argument
610 c = insertGapCore0w(bytecode, pos, length, exclusive, in insertGapAt()
617 c = insertGapCore0(bytecode, pos, length, exclusive, in insertGapAt()
626 if (mark > pos || (mark == pos && exclusive)) in insertGapAt()
797 boolean exclusive, ExceptionTable etable, CodeAttribute ca) in insertGapCore0() argument
804 return insertGapCore1(code, where, gapLength, exclusive, etable, ca); in insertGapCore0()
809 exclusive, etable, ca); in insertGapCore0()
818 boolean exclusive, ExceptionTable etable, in insertGapCore1() argument
824 insertGap2(code, where, gapLength, codeLength, newcode, exclusive); in insertGapCore1()
825 etable.shiftPc(where, gapLength, exclusive); in insertGapCore1()
829 na.shiftPc(where, gapLength, exclusive); in insertGapCore1()
834 va.shiftPc(where, gapLength, exclusive); in insertGapCore1()
840 vta.shiftPc(where, gapLength, exclusive); in insertGapCore1()
844 smt.shiftPc(where, gapLength, exclusive); in insertGapCore1()
848 sm.shiftPc(where, gapLength, exclusive); in insertGapCore1()
854 int endPos, byte[] newcode, boolean exclusive) in insertGap2() argument
874 offset = newOffset(i, offset, where, gapLength, exclusive); in insertGap2()
882 offset = newOffset(i, offset, where, gapLength, exclusive); in insertGap2()
901 where, gapLength, exclusive); in insertGap2()
912 where, gapLength, exclusive); in insertGap2()
933 where, gapLength, exclusive); in insertGap2()
944 where, gapLength, exclusive); in insertGap2()
974 int gapLength, boolean exclusive) { in newOffset() argument
977 if (where < target || (exclusive && where == target)) in newOffset()
987 if (target < where || (!exclusive && where == target)) in newOffset()
1014 void shiftPc(int where, int gapLength, boolean exclusive) throws BadBytecode { in shiftPc() argument
1015 if (where < cursor || (where == cursor && exclusive)) in shiftPc()
1018 if (where < mark || (where == mark && exclusive)) in shiftPc()
1021 if (where < mark0 || (where == mark0 && exclusive)) in shiftPc()
1024 etable.shiftPc(where, gapLength, exclusive); in shiftPc()
1026 line.shiftPc(where, gapLength, exclusive); in shiftPc()
1029 vars.shiftPc(where, gapLength, exclusive); in shiftPc()
1032 types.shiftPc(where, gapLength, exclusive); in shiftPc()
1035 stack.shiftPc(where, gapLength, exclusive); in shiftPc()
1038 stack2.shiftPc(where, gapLength, exclusive); in shiftPc()
1086 private byte[] insertGapCore0w(byte[] code, int where, int gapLength, boolean exclusive, in insertGapCore0w() argument
1095 byte[] r = insertGap2w(code, where, gapLength, exclusive, jumps, pointers); in insertGapCore0w()
1099 if (where2 == currentPos && !exclusive) in insertGapCore0w()
1102 if (exclusive) in insertGapCore0w()
1111 boolean exclusive, ArrayList jumps, Pointers ptrs) in insertGap2w() argument
1116 ptrs.shiftPc(where, gapLength, exclusive); in insertGap2w()
1118 ((Branch)jumps.get(i)).shift(where, gapLength, exclusive); in insertGap2w()
1270 void shift(int where, int gapLength, boolean exclusive) { in shift() argument
1271 if (where < pos || (where == pos && exclusive)) in shift()
1276 int gapLength, boolean exclusive) { in shiftOffset() argument
1279 if (where < target || (exclusive && where == target)) in shiftOffset()
1285 if (target < where && exclusive) in shiftOffset()
1287 else if (where < target && !exclusive) in shiftOffset()
1291 if (target < where || (!exclusive && where == target)) in shiftOffset()
1347 void shift(int where, int gapLength, boolean exclusive) { in shift() argument
1348 offset = shiftOffset(pos, offset, where, gapLength, exclusive); in shift()
1349 super.shift(where, gapLength, exclusive); in shift()
1435 void shift(int where, int gapLength, boolean exclusive) { in shift() argument
1436 offset = shiftOffset(pos, offset, where, gapLength, exclusive); in shift()
1437 super.shift(where, gapLength, exclusive); in shift()
1458 void shift(int where, int gapLength, boolean exclusive) { in shift() argument
1460 defaultByte = shiftOffset(p, defaultByte, where, gapLength, exclusive); in shift()
1463 offsets[i] = shiftOffset(p, offsets[i], where, gapLength, exclusive); in shift()
1465 super.shift(where, gapLength, exclusive); in shift()