• Home
  • Raw
  • Download

Lines Matching refs:mRS

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