Lines Matching refs:mRS

57         long id = mRS.nScriptKernelIDCreate(getID(mRS), slot, sig);
62 k = new KernelID(id, mRS, this, slot, sig);
95 long id = mRS.nScriptFieldIDCreate(getID(mRS), slot);
100 f = new FieldID(id, mRS, this, slot);
111 mRS.nScriptInvoke(getID(mRS), slot);
120 mRS.nScriptInvokeV(getID(mRS), slot, v.getData());
122 mRS.nScriptInvoke(getID(mRS), slot);
131 mRS.validate();
132 mRS.validateObject(ain);
133 mRS.validateObject(aout);
140 in_id = ain.getID(mRS);
144 out_id = aout.getID(mRS);
150 mRS.nScriptForEach(getID(mRS), slot, in_id, out_id, params);
158 mRS.validate();
159 mRS.validateObject(ain);
160 mRS.validateObject(aout);
172 in_id = ain.getID(mRS);
176 out_id = aout.getID(mRS);
182 mRS.nScriptForEachClipped(getID(mRS), slot, in_id, out_id, params, sc.xstart, sc.xend, sc.ystart, sc.yend, sc.zstart, sc.zend);
200 mRS.validate();
203 mRS.validateObject(ain);
206 mRS.validateObject(aout);
219 in_ids[index] = ains[index].getID(mRS);
224 out_id = aout.getID(mRS);
230 mRS.nScriptForEachMultiClipped(getID(mRS), slot, in_ids, out_id, params, sc.xstart, sc.xend, sc.ystart, sc.yend, sc.zstart, sc.zend);
243 mRS.validate();
244 mRS.validateObject(va);
246 if (mRS.getApplicationContext().getApplicationInfo().targetSdkVersion >= 20) {
253 mRS.nScriptBindAllocation(getID(mRS), va.getID(mRS), slot);
255 mRS.nScriptBindAllocation(getID(mRS), 0, slot);
264 mRS.nScriptSetVarF(getID(mRS), index, v);
267 return mRS.nScriptGetVarF(getID(mRS), index);
275 mRS.nScriptSetVarD(getID(mRS), index, v);
278 return mRS.nScriptGetVarD(getID(mRS), index);
286 mRS.nScriptSetVarI(getID(mRS), index, v);
289 return mRS.nScriptGetVarI(getID(mRS), index);
298 mRS.nScriptSetVarJ(getID(mRS), index, v);
301 return mRS.nScriptGetVarJ(getID(mRS), index);
310 mRS.nScriptSetVarI(getID(mRS), index, v ? 1 : 0);
313 return mRS.nScriptGetVarI(getID(mRS), index) > 0 ? true : false;
321 mRS.validate();
322 mRS.validateObject(o);
323 mRS.nScriptSetVarObj(getID(mRS), index, (o == null) ? 0 : o.getID(mRS));
331 mRS.nScriptSetVarV(getID(mRS), index, v.getData());
339 mRS.nScriptSetVarVE(getID(mRS), index, v.getData(), e.getID(mRS), dims);
347 mRS.nScriptGetVarV(getID(mRS), index, v.getData());
351 mRS.validate();
353 mRS.nScriptSetTimeZone(getID(mRS), timeZone.getBytes("UTF-8"));
364 RenderScript mRS;
367 mRS = rs;