Lines Matching refs:val

104   public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) {  in SetLocalVariableInt()  argument
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt()
107 public static void SetLocalVariableLong(Thread thr, int depth, int slot, Object val) { in SetLocalVariableLong() argument
108 SetLocalVariableLong(thr, depth, slot, ((Number)val).longValue()); in SetLocalVariableLong()
110 public static void SetLocalVariableFloat(Thread thr, int depth, int slot, Object val) { in SetLocalVariableFloat() argument
111 SetLocalVariableFloat(thr, depth, slot, ((Number)val).floatValue()); in SetLocalVariableFloat()
113 public static void SetLocalVariableDouble(Thread thr, int depth, int slot, Object val) { in SetLocalVariableDouble() argument
114 SetLocalVariableDouble(thr, depth, slot, ((Number)val).doubleValue()); in SetLocalVariableDouble()
116 public static native void SetLocalVariableInt(Thread thr, int depth, int slot, int val); in SetLocalVariableInt() argument
117 public static native void SetLocalVariableLong(Thread thr, int depth, int slot, long val); in SetLocalVariableLong() argument
118 public static native void SetLocalVariableFloat(Thread thr, int depth, int slot, float val); in SetLocalVariableFloat() argument
119 public static native void SetLocalVariableDouble(Thread thr, int depth, int slot, double val); in SetLocalVariableDouble() argument
120 public static native void SetLocalVariableObject(Thread thr, int depth, int slot, Object val); in SetLocalVariableObject() argument