Lines Matching refs:cl
189 final ConnectLine cl = target.mOutputs.get(ct); in validateCycle() local
190 if (cl.mToK != null) { in validateCycle()
191 Node tn = findNode(cl.mToK.mScript); in validateCycle()
197 if (cl.mToF != null) { in validateCycle()
198 Node tn = findNode(cl.mToF.mScript); in validateCycle()
223 final ConnectLine cl = n.mOutputs.get(ct); in validateDAGRecurse() local
224 if (cl.mToK != null) { in validateDAGRecurse()
225 Node tn = findNode(cl.mToK.mScript); in validateDAGRecurse()
228 if (cl.mToF != null) { in validateDAGRecurse()
229 Node tn = findNode(cl.mToF.mScript); in validateDAGRecurse()
329 ConnectLine cl = new ConnectLine(t, from, to); in addConnection() local
332 nf.mOutputs.add(cl); in addConnection()
333 nt.mInputs.add(cl); in addConnection()
364 ConnectLine cl = new ConnectLine(t, from, to); in addConnection() local
367 nf.mOutputs.add(cl); in addConnection()
368 nt.mInputs.add(cl); in addConnection()
436 ConnectLine cl = mLines.get(ct); in create() local
437 src[ct] = cl.mFrom.getID(mRS); in create()
438 if (cl.mToK != null) { in create()
439 dstk[ct] = cl.mToK.getID(mRS); in create()
441 if (cl.mToF != null) { in create()
442 dstf[ct] = cl.mToF.getID(mRS); in create()
444 types[ct] = cl.mAllocationType.getID(mRS); in create()