Lines Matching refs:length

83      * @return {@code >= 0;} the length of the bytecode array
90 * Gets the total length of this structure in bytes, when included in
94 * @return {@code >= 4;} the total length, in bytes
133 int length = parseInstruction(at, null);
134 at += length;
215 * @return the length of the instruction, in bytes
825 * @return instruction length, in bytes
856 int length = at - offset;
857 visitor.visitSwitch(ByteOps.LOOKUPSWITCH, offset, length, cases,
860 return length;
868 * @return instruction length, in bytes
894 int length = at - offset;
895 visitor.visitSwitch(ByteOps.LOOKUPSWITCH, offset, length, cases,
898 return length;
906 * @return instruction length, in bytes
950 // Revisit the previous bytecode to find out the length of the array
962 constantVisitor.length + previousOffset == offset) {
998 if (constantVisitor.length == 0 ||
1004 curOffset += constantVisitor.length;
1011 if (constantVisitor.length == 0 ||
1015 curOffset += constantVisitor.length;
1095 * @return instruction length, in bytes
1178 * @param length length of the instruction, in bytes
1180 public void visitInvalid(int opcode, int offset, int length);
1188 * @param length length of the instruction, in bytes
1191 public void visitNoArgs(int opcode, int offset, int length,
1199 * @param length length of the instruction, in bytes
1205 public void visitLocal(int opcode, int offset, int length,
1227 * @param length length of the instruction, in bytes
1232 public void visitConstant(int opcode, int offset, int length,
1240 * @param length length of the instruction, in bytes
1243 public void visitBranch(int opcode, int offset, int length,
1251 * @param length length of the instruction, in bytes
1257 public void visitSwitch(int opcode, int offset, int length,
1264 * @param length length of the instruction, in bytes
1269 public void visitNewarray(int offset, int length, CstType type,
1300 public void visitInvalid(int opcode, int offset, int length) {
1306 public void visitNoArgs(int opcode, int offset, int length,
1313 public void visitLocal(int opcode, int offset, int length,
1320 public void visitConstant(int opcode, int offset, int length,
1327 public void visitBranch(int opcode, int offset, int length,
1334 public void visitSwitch(int opcode, int offset, int length,
1341 public void visitNewarray(int offset, int length, CstType type,
1365 int length;
1373 length = 0;
1378 public void visitInvalid(int opcode, int offset, int length) {
1384 public void visitNoArgs(int opcode, int offset, int length,
1391 public void visitLocal(int opcode, int offset, int length,
1398 public void visitConstant(int opcode, int offset, int length,
1401 this.length = length;
1407 public void visitBranch(int opcode, int offset, int length,
1414 public void visitSwitch(int opcode, int offset, int length,
1421 public void visitNewarray(int offset, int length, CstType type,