Lines Matching refs:depth

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);
102 public static native Object GetLocalInstance(Thread thr, int depth);
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);