Home | History | Annotate | Download | only in util

Lines Matching full:clazz

185     public void visitSimpleInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SimpleInstruction simpleInstruction)
197 clazz,
205 public void visitVariableInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction)
219 clazz,
227 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction)
234 matchingConstantIndices(clazz,
242 clazz,
250 public void visitBranchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, BranchInstruction branchInstruction)
264 clazz,
272 public void visitTableSwitchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, TableSwitchInstruction tableSwitchInstruction)
292 clazz,
300 public void visitLookUpSwitchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, LookUpSwitchInstruction lookUpSwitchInstruction)
318 clazz,
328 public void visitIntegerConstant(Clazz clazz, IntegerConstant integerConstant)
338 public void visitLongConstant(Clazz clazz, LongConstant longConstant)
348 public void visitFloatConstant(Clazz clazz, FloatConstant floatConstant)
358 public void visitDoubleConstant(Clazz clazz, DoubleConstant doubleConstant)
368 public void visitStringConstant(Clazz clazz, StringConstant stringConstant)
374 matchingConstantIndices(clazz,
380 public void visitUtf8Constant(Clazz clazz, Utf8Constant utf8Constant)
390 public void visitAnyRefConstant(Clazz clazz, RefConstant refConstant)
396 matchingConstantIndices(clazz,
399 matchingConstantIndices(clazz,
405 public void visitClassConstant(Clazz clazz, ClassConstant classConstant)
411 matchingConstantIndices(clazz,
417 public void visitNameAndTypeConstant(Clazz clazz, NameAndTypeConstant nameAndTypeConstant)
423 matchingConstantIndices(clazz,
426 matchingConstantIndices(clazz,
488 private boolean matchingConstantIndices(Clazz clazz,
503 if (clazz.getTag(constantIndex1) == patternConstant.getTag())
505 clazz.constantPoolEntryAccept(constantIndex1, this);
575 Clazz clazz,
583 System.out.println("InstructionSequenceMatcher: ["+clazz.getName()+"."+method.getName(clazz)+method.getDescriptor(clazz)+"]: "+patternInstructions[patternInstructionIndex].toString(patternInstructionIndex)+(condition?"\t== ":"\t ")+instruction.toString(offset));
605 System.out.println("InstructionSequenceMatcher: ["+clazz.getName()+"."+method.getName(clazz)+method.getDescriptor(clazz)+"]");
630 instruction.accept(clazz, method, codeAttribute, offset, this);