Lines Matching refs:slot

31     public final int slot;
34 long start, int length, String name, String sig, String gen_sig, int slot) {
40 this.slot = slot;
47 "Sig: '%s', Name: '%s', Gen_sig: '%s', slot: %d, start: %d, len: %d" +
52 this.slot,
64 v.slot == slot &&
70 return Objects.hash(this.signature, this.name, this.generic_signature, this.slot,
97 public static native int GetLocalVariableInt(Thread thr, int depth, int slot);
98 public static native long GetLocalVariableLong(Thread thr, int depth, int slot);
99 public static native float GetLocalVariableFloat(Thread thr, int depth, int slot);
100 public static native double GetLocalVariableDouble(Thread thr, int depth, int slot);
101 public static native Object GetLocalVariableObject(Thread thr, int depth, int slot);
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);