Lines Matching refs:getID

64         long id = mRS.nScriptKernelIDCreate(getID(mRS), slot, sig);  in createKernelID()
102 long id = mRS.nScriptInvokeIDCreate(getID(mRS), slot); in createInvokeID()
140 long id = mRS.nScriptFieldIDCreate(getID(mRS), slot); in createFieldID()
156 mRS.nScriptInvoke(getID(mRS), slot); in invoke()
165 mRS.nScriptInvokeV(getID(mRS), slot, v.getData()); in invoke()
167 mRS.nScriptInvoke(getID(mRS), slot); in invoke()
199 in_ids[0] = ain.getID(mRS); in forEach()
204 out_id = aout.getID(mRS); in forEach()
224 mRS.nScriptForEach(getID(mRS), slot, in_ids, out_id, params, limits); in forEach()
261 in_ids[index] = ains[index].getID(mRS); in forEach()
269 out_id = aout.getID(mRS); in forEach()
289 mRS.nScriptForEach(getID(mRS), slot, in_ids, out_id, params, limits); in forEach()
312 in_ids[index] = ains[index].getID(mRS); in reduce()
314 long out_id = aout.getID(mRS); in reduce()
328 mRS.nScriptReduce(getID(mRS), slot, in_ids, out_id, limits); in reduce()
373 mRS.nScriptBindAllocation(getID(mRS), va.getID(mRS), slot); in bindAllocation()
375 mRS.nScriptBindAllocation(getID(mRS), 0, slot); in bindAllocation()
384 mRS.nScriptSetVarF(getID(mRS), index, v); in setVar()
387 return mRS.nScriptGetVarF(getID(mRS), index); in getVarF()
395 mRS.nScriptSetVarD(getID(mRS), index, v); in setVar()
398 return mRS.nScriptGetVarD(getID(mRS), index); in getVarD()
406 mRS.nScriptSetVarI(getID(mRS), index, v); in setVar()
409 return mRS.nScriptGetVarI(getID(mRS), index); in getVarI()
418 mRS.nScriptSetVarJ(getID(mRS), index, v); in setVar()
421 return mRS.nScriptGetVarJ(getID(mRS), index); in getVarJ()
430 mRS.nScriptSetVarI(getID(mRS), index, v ? 1 : 0); in setVar()
433 return mRS.nScriptGetVarI(getID(mRS), index) > 0 ? true : false; in getVarB()
443 mRS.nScriptSetVarObj(getID(mRS), index, (o == null) ? 0 : o.getID(mRS)); in setVar()
451 mRS.nScriptSetVarV(getID(mRS), index, v.getData()); in setVar()
459 mRS.nScriptSetVarVE(getID(mRS), index, v.getData(), e.getID(mRS), dims); in setVar()
467 mRS.nScriptGetVarV(getID(mRS), index, v.getData()); in getVarV()
473 mRS.nScriptSetTimeZone(getID(mRS), timeZone.getBytes("UTF-8")); in setTimeZone()