Home | History | Annotate | Download | only in util

Lines Matching refs:clazz

224     public void visitSimpleInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SimpleInstruction simpleInstruction)
236 clazz,
244 public void visitVariableInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction)
258 clazz,
266 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction)
273 matchingConstantIndices(clazz,
281 clazz,
289 public void visitBranchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, BranchInstruction branchInstruction)
303 clazz,
311 public void visitTableSwitchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, TableSwitchInstruction tableSwitchInstruction)
331 clazz,
339 public void visitLookUpSwitchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, LookUpSwitchInstruction lookUpSwitchInstruction)
357 clazz,
367 public void visitIntegerConstant(Clazz clazz, IntegerConstant integerConstant)
377 public void visitLongConstant(Clazz clazz, LongConstant longConstant)
387 public void visitFloatConstant(Clazz clazz, FloatConstant floatConstant)
397 public void visitDoubleConstant(Clazz clazz, DoubleConstant doubleConstant)
407 public void visitStringConstant(Clazz clazz, StringConstant stringConstant)
413 matchingConstantIndices(clazz,
419 public void visitUtf8Constant(Clazz clazz, Utf8Constant utf8Constant)
429 public void visitInvokeDynamicConstant(Clazz clazz, InvokeDynamicConstant invokeDynamicConstant)
435 matchingConstantIndices(clazz,
438 matchingConstantIndices(clazz,
444 public void visitMethodHandleConstant(Clazz clazz, MethodHandleConstant methodHandleConstant)
452 matchingConstantIndices(clazz,
458 public void visitAnyRefConstant(Clazz clazz, RefConstant refConstant)
464 matchingConstantIndices(clazz,
467 matchingConstantIndices(clazz,
473 public void visitClassConstant(Clazz clazz, ClassConstant classConstant)
479 matchingConstantIndices(clazz,
485 public void visitMethodTypeConstant(Clazz clazz, MethodTypeConstant methodTypeConstant)
491 matchingConstantIndices(clazz,
497 public void visitNameAndTypeConstant(Clazz clazz, NameAndTypeConstant nameAndTypeConstant)
503 matchingConstantIndices(clazz,
506 matchingConstantIndices(clazz,
589 private boolean matchingConstantIndices(Clazz clazz,
607 if (clazz.getTag(constantIndex1) == patternConstant.getTag())
609 clazz.constantPoolEntryAccept(constantIndex1, this);
698 Clazz clazz,
706 System.out.println("InstructionSequenceMatcher: ["+clazz.getName()+"."+method.getName(clazz)+method.getDescriptor(clazz)+"]: "+patternInstructions[patternInstructionIndex].toString(patternInstructionIndex)+(condition?"\t== ":"\t ")+instruction.toString(offset));
725 System.out.println("InstructionSequenceMatcher: ["+clazz.getName()+"."+method.getName(clazz)+method.getDescriptor(clazz)+"]");
750 instruction.accept(clazz, method, codeAttribute, offset, this);