Lines Matching refs:getID
58 long id = mRS.nScriptKernelIDCreate(getID(mRS), slot, sig); in createKernelID()
96 long id = mRS.nScriptInvokeIDCreate(getID(mRS), slot); in createInvokeID()
134 long id = mRS.nScriptFieldIDCreate(getID(mRS), slot); in createFieldID()
150 mRS.nScriptInvoke(getID(mRS), slot); in invoke()
159 mRS.nScriptInvokeV(getID(mRS), slot, v.getData()); in invoke()
161 mRS.nScriptInvoke(getID(mRS), slot); in invoke()
193 in_ids[0] = ain.getID(mRS); in forEach()
198 out_id = aout.getID(mRS); in forEach()
218 mRS.nScriptForEach(getID(mRS), slot, in_ids, out_id, params, limits); in forEach()
255 in_ids[index] = ains[index].getID(mRS); in forEach()
263 out_id = aout.getID(mRS); in forEach()
283 mRS.nScriptForEach(getID(mRS), slot, in_ids, out_id, params, limits); in forEach()
316 mRS.nScriptBindAllocation(getID(mRS), va.getID(mRS), slot); in bindAllocation()
318 mRS.nScriptBindAllocation(getID(mRS), 0, slot); in bindAllocation()
327 mRS.nScriptSetVarF(getID(mRS), index, v); in setVar()
330 return mRS.nScriptGetVarF(getID(mRS), index); in getVarF()
338 mRS.nScriptSetVarD(getID(mRS), index, v); in setVar()
341 return mRS.nScriptGetVarD(getID(mRS), index); in getVarD()
349 mRS.nScriptSetVarI(getID(mRS), index, v); in setVar()
352 return mRS.nScriptGetVarI(getID(mRS), index); in getVarI()
361 mRS.nScriptSetVarJ(getID(mRS), index, v); in setVar()
364 return mRS.nScriptGetVarJ(getID(mRS), index); in getVarJ()
373 mRS.nScriptSetVarI(getID(mRS), index, v ? 1 : 0); in setVar()
376 return mRS.nScriptGetVarI(getID(mRS), index) > 0 ? true : false; in getVarB()
386 mRS.nScriptSetVarObj(getID(mRS), index, (o == null) ? 0 : o.getID(mRS)); in setVar()
394 mRS.nScriptSetVarV(getID(mRS), index, v.getData()); in setVar()
402 mRS.nScriptSetVarVE(getID(mRS), index, v.getData(), e.getID(mRS), dims); in setVar()
410 mRS.nScriptGetVarV(getID(mRS), index, v.getData()); in getVarV()
416 mRS.nScriptSetTimeZone(getID(mRS), timeZone.getBytes("UTF-8")); in setTimeZone()