Lines Matching refs:clazz

65     public void enterMethod(Clazz clazz, Method method, Variables variables)
67 String descriptor = method.getDescriptor(clazz);
90 Value value = getMethodParameterValue(clazz,
93 ClassUtil.internalTypeFromClassName(clazz.getName()),
94 clazz);
114 Value value = getMethodParameterValue(clazz,
132 public void exitMethod(Clazz clazz, Method method, Value returnValue)
134 setMethodReturnValue(clazz, method, returnValue);
138 public void invokeMember(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction, Stack stack)
178 clazz.constantPoolEntryAccept(constantIndex, this);
185 public void visitFieldrefConstant(Clazz clazz, FieldrefConstant fieldrefConstant)
190 setFieldValue(clazz, fieldrefConstant, stack.pop());
196 setFieldClassValue(clazz, fieldrefConstant, stack.apop());
202 String type = fieldrefConstant.getType(clazz);
204 stack.push(getFieldValue(clazz, fieldrefConstant, type));
209 public void visitAnyMethodrefConstant(Clazz clazz, RefConstant methodrefConstant)
211 String type = methodrefConstant.getType(clazz);
223 setMethodParameterValue(clazz, methodrefConstant, parameterIndex, stack.pop());
230 stack.push(getMethodReturnValue(clazz, methodrefConstant, returnType));
234 public void visitInvokeDynamicConstant(Clazz clazz, InvokeDynamicConstant invokeDynamicConstant)
236 String type = invokeDynamicConstant.getType(clazz);
255 stack.push(getMethodReturnValue(clazz, invokeDynamicConstant, returnType));
263 protected void setFieldClassValue(Clazz clazz,
274 protected Value getFieldClassValue(Clazz clazz,
291 protected void setFieldValue(Clazz clazz,
302 protected Value getFieldValue(Clazz clazz,
319 protected void setMethodParameterValue(Clazz clazz,
331 protected Value getMethodParameterValue(Clazz clazz,
344 protected void setMethodReturnValue(Clazz clazz,
355 protected Value getMethodReturnValue(Clazz clazz,
372 protected Value getMethodReturnValue(Clazz clazz,