Lines Matching refs:getID

59         long id = mRS.nScriptKernelIDCreate(getID(mRS), slot, sig);  in createKernelID()
97 long id = mRS.nScriptInvokeIDCreate(getID(mRS), slot); in createInvokeID()
136 long id = mRS.nScriptFieldIDCreate(getID(mRS), slot); in createFieldID()
152 mRS.nScriptInvoke(getID(mRS), slot); in invoke()
161 mRS.nScriptInvokeV(getID(mRS), slot, v.getData()); in invoke()
163 mRS.nScriptInvoke(getID(mRS), slot); in invoke()
195 in_ids[0] = ain.getID(mRS); in forEach()
200 out_id = aout.getID(mRS); in forEach()
220 mRS.nScriptForEach(getID(mRS), slot, in_ids, out_id, params, limits); in forEach()
257 in_ids[index] = ains[index].getID(mRS); in forEach()
265 out_id = aout.getID(mRS); in forEach()
285 mRS.nScriptForEach(getID(mRS), slot, in_ids, out_id, params, limits); in forEach()
308 in_ids[index] = ains[index].getID(mRS); in reduce()
310 long out_id = aout.getID(mRS); in reduce()
324 mRS.nScriptReduce(getID(mRS), slot, in_ids, out_id, limits); in reduce()
369 mRS.nScriptBindAllocation(getID(mRS), va.getID(mRS), slot); in bindAllocation()
371 mRS.nScriptBindAllocation(getID(mRS), 0, slot); in bindAllocation()
380 mRS.nScriptSetVarF(getID(mRS), index, v); in setVar()
383 return mRS.nScriptGetVarF(getID(mRS), index); in getVarF()
391 mRS.nScriptSetVarD(getID(mRS), index, v); in setVar()
394 return mRS.nScriptGetVarD(getID(mRS), index); in getVarD()
402 mRS.nScriptSetVarI(getID(mRS), index, v); in setVar()
405 return mRS.nScriptGetVarI(getID(mRS), index); in getVarI()
414 mRS.nScriptSetVarJ(getID(mRS), index, v); in setVar()
417 return mRS.nScriptGetVarJ(getID(mRS), index); in getVarJ()
426 mRS.nScriptSetVarI(getID(mRS), index, v ? 1 : 0); in setVar()
429 return mRS.nScriptGetVarI(getID(mRS), index) > 0 ? true : false; in getVarB()
439 mRS.nScriptSetVarObj(getID(mRS), index, (o == null) ? 0 : o.getID(mRS)); in setVar()
447 mRS.nScriptSetVarV(getID(mRS), index, v.getData()); in setVar()
455 mRS.nScriptSetVarVE(getID(mRS), index, v.getData(), e.getID(mRS), dims); in setVar()
463 mRS.nScriptGetVarV(getID(mRS), index, v.getData()); in getVarV()
469 mRS.nScriptSetTimeZone(getID(mRS), timeZone.getBytes("UTF-8")); in setTimeZone()