Home | History | Annotate | Download | only in editor

Lines Matching refs:method

261         // Remap the constant pool references of the bootstrap method entries.
337 public void visitMethodParametersAttribute(Clazz clazz, Method method, MethodParametersAttribute methodParametersAttribute)
343 methodParametersAttribute.parametersAccept(clazz, method, this);
347 public void visitExceptionsAttribute(Clazz clazz, Method method, ExceptionsAttribute exceptionsAttribute)
358 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
367 codeAttribute.instructionsAccept(clazz, method, this);
371 codeAttributeEditor.visitCodeAttribute(clazz, method, codeAttribute);
374 codeAttribute.exceptionsAccept(clazz, method, this);
375 codeAttribute.attributesAccept(clazz, method, this);
379 public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapAttribute stackMapAttribute)
385 stackMapAttribute.stackMapFramesAccept(clazz, method, codeAttribute, this);
389 public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute)
395 stackMapTableAttribute.stackMapFramesAccept(clazz, method, codeAttribute, this);
399 public void visitLineNumberTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, LineNumberTableAttribute lineNumberTableAttribute)
406 public void visitLocalVariableTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTableAttribute localVariableTableAttribute)
412 localVariableTableAttribute.localVariablesAccept(clazz, method, codeAttribute, this);
416 public void visitLocalVariableTypeTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTypeTableAttribute localVariableTypeTableAttribute)
422 localVariableTypeTableAttribute.localVariablesAccept(clazz, method, codeAttribute, this);
436 public void visitAnyParameterAnnotationsAttribute(Clazz clazz, Method method, ParameterAnnotationsAttribute parameterAnnotationsAttribute)
442 parameterAnnotationsAttribute.annotationsAccept(clazz, method, this);
446 public void visitAnnotationDefaultAttribute(Clazz clazz, Method method, AnnotationDefaultAttribute annotationDefaultAttribute)
495 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo)
507 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {}
510 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction)
529 public void visitAnyStackMapFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, StackMapFrame stackMapFrame) {}
532 public void visitSameOneFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SameOneFrame sameOneFrame)
535 sameOneFrame.stackItemAccept(clazz, method, codeAttribute, offset, this);
539 public void visitMoreZeroFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, MoreZeroFrame moreZeroFrame)
542 moreZeroFrame.additionalVariablesAccept(clazz, method, codeAttribute, offset, this);
546 public void visitFullFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, FullFrame fullFrame)
549 fullFrame.variablesAccept(clazz, method, codeAttribute, offset, this);
550 fullFrame.stackAccept(clazz, method, codeAttribute, offset, this);
556 public void visitAnyVerificationType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VerificationType verificationType) {}
559 public void visitObjectType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ObjectType objectType)
568 public void visitParameterInfo(Clazz clazz, Method method, int parameterIndex, ParameterInfo parameterInfo)
577 public void visitLocalVariableInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableInfo localVariableInfo)
588 public void visitLocalVariableTypeInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTypeInfo localVariableTypeInfo)