Lines Matching refs:cl
579 final ConnectLine cl = target.mOutputs.get(ct); in validateCycle() local
580 if (cl.mToK != null) { in validateCycle()
581 Node tn = findNode(cl.mToK.mScript); in validateCycle()
587 if (cl.mToF != null) { in validateCycle()
588 Node tn = findNode(cl.mToF.mScript); in validateCycle()
613 final ConnectLine cl = n.mOutputs.get(ct); in validateDAGRecurse() local
614 if (cl.mToK != null) { in validateDAGRecurse()
615 Node tn = findNode(cl.mToK.mScript); in validateDAGRecurse()
618 if (cl.mToF != null) { in validateDAGRecurse()
619 Node tn = findNode(cl.mToF.mScript); in validateDAGRecurse()
720 ConnectLine cl = new ConnectLine(t, from, to); in addConnection() local
723 nf.mOutputs.add(cl); in addConnection()
724 nt.mInputs.add(cl); in addConnection()
755 ConnectLine cl = new ConnectLine(t, from, to); in addConnection() local
758 nf.mOutputs.add(cl); in addConnection()
759 nt.mInputs.add(cl); in addConnection()
827 ConnectLine cl = mLines.get(ct); in create() local
828 src[ct] = cl.mFrom.getID(mRS); in create()
829 if (cl.mToK != null) { in create()
830 dstk[ct] = cl.mToK.getID(mRS); in create()
832 if (cl.mToF != null) { in create()
833 dstf[ct] = cl.mToF.getID(mRS); in create()
835 types[ct] = cl.mAllocationType.getID(mRS); in create()