Lines Matching +defs:val +defs:name

28     public final String name;
34 long start, int length, String name, String sig, String gen_sig, int slot) {
37 this.name = name;
50 this.name,
62 Objects.equals(v.name, name) &&
70 return Objects.hash(this.signature, this.name, this.generic_signature, this.slot,
78 Executable e, String name, String sig, int line) throws Exception {
79 return GetVariableAtLocation(e, name, sig, Breakpoint.lineToLocation(e, line));
83 Executable e, String name, String sig, long loc) {
88 var.name.equals(name) &&
94 "Unable to find variable " + name + " (sig: " + sig + ") in " + e + " at loc " + loc);
104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) {
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue());
107 public static void SetLocalVariableLong(Thread thr, int depth, int slot, Object val) {
108 SetLocalVariableLong(thr, depth, slot, ((Number)val).longValue());
110 public static void SetLocalVariableFloat(Thread thr, int depth, int slot, Object val) {
111 SetLocalVariableFloat(thr, depth, slot, ((Number)val).floatValue());
113 public static void SetLocalVariableDouble(Thread thr, int depth, int slot, Object val) {
114 SetLocalVariableDouble(thr, depth, slot, ((Number)val).doubleValue());
116 public static native void SetLocalVariableInt(Thread thr, int depth, int slot, int val);
117 public static native void SetLocalVariableLong(Thread thr, int depth, int slot, long val);
118 public static native void SetLocalVariableFloat(Thread thr, int depth, int slot, float val);
119 public static native void SetLocalVariableDouble(Thread thr, int depth, int slot, double val);
120 public static native void SetLocalVariableObject(Thread thr, int depth, int slot, Object val);