Uses of Class
com.sun.electric.tool.ncc.trees.EquivRecord

Packages that use EquivRecord
com.sun.electric.tool.ncc Package for handling the Network Consistency Checking (LVS) tool. 
com.sun.electric.tool.ncc.lists   
com.sun.electric.tool.ncc.processing   
com.sun.electric.tool.ncc.strategy   
com.sun.electric.tool.ncc.trees   
 

Uses of EquivRecord in com.sun.electric.tool.ncc
 

Methods in com.sun.electric.tool.ncc that return EquivRecord
 EquivRecord NccGlobals.getParts()
           
 EquivRecord NccGlobals.getPorts()
           
 EquivRecord NccGlobals.getRoot()
           
 EquivRecord NccGlobals.getWires()
           
 

Uses of EquivRecord in com.sun.electric.tool.ncc.lists
 

Fields in com.sun.electric.tool.ncc.lists with type parameters of type EquivRecord
protected  java.util.List<EquivRecord> RecordList.content
           
 

Methods in com.sun.electric.tool.ncc.lists that return EquivRecord
 EquivRecord RecordList.get(int ndx)
           
 

Methods in com.sun.electric.tool.ncc.lists that return types with arguments of type EquivRecord
 java.util.Iterator<EquivRecord> RecordList.iterator()
           
 

Methods in com.sun.electric.tool.ncc.lists with parameters of type EquivRecord
 void LeafList.add(EquivRecord r)
           
 void RecordList.add(EquivRecord x)
           
 

Uses of EquivRecord in com.sun.electric.tool.ncc.processing
 

Constructor parameters in com.sun.electric.tool.ncc.processing with type arguments of type EquivRecord
LocalPartitionResult(java.util.List<EquivRecord> notMatchedParts, java.util.List<EquivRecord> notMatchedWires, NccGlobals globals)
           
LocalPartitionResult(java.util.List<EquivRecord> notMatchedParts, java.util.List<EquivRecord> notMatchedWires, NccGlobals globals)
           
 

Uses of EquivRecord in com.sun.electric.tool.ncc.strategy
 

Methods in com.sun.electric.tool.ncc.strategy with parameters of type EquivRecord
 LeafList StratHashWires.doFor(EquivRecord g)
           
 LeafList StratCount.doFor(EquivRecord j)
           
 LeafList StratPortName.doFor(EquivRecord g)
           
 LeafList StratDebug2.doFor(EquivRecord er)
           
 LeafList StratCheck.doFor(EquivRecord j)
           
 LeafList StratCheckSizes.doFor(EquivRecord j)
           
 LeafList Strategy.doFor(EquivRecord rr)
          Method doFor(EquivRecord) processes a single EquivRecord.
 LeafList StratHashParts.doFor(EquivRecord g)
           
 LeafList StratPrint.doFor(EquivRecord j)
           
 LeafList StratDebug.doFor(EquivRecord er)
           
static LeafList StratHashWires.doYourJob(EquivRecord er, NccGlobals globals)
           
static LeafList StratCheck.doYourJob(EquivRecord j, NccGlobals globals)
           
static LeafList StratHashParts.doYourJob(EquivRecord er, NccGlobals globals)
           
static LeafList StratPrint.doYourJob(EquivRecord j, NccGlobals globals)
           
 

Method parameters in com.sun.electric.tool.ncc.strategy with type arguments of type EquivRecord
 LeafList Strategy.doFor(java.util.Iterator<EquivRecord> it)
           
static LeafList StratHashWires.doYourJob(java.util.Iterator<EquivRecord> it, NccGlobals globals)
           
static LeafList StratHashParts.doYourJob(java.util.Iterator<EquivRecord> it, NccGlobals globals)
           
 

Uses of EquivRecord in com.sun.electric.tool.ncc.trees
 

Methods in com.sun.electric.tool.ncc.trees that return EquivRecord
 EquivRecord EquivRecord.getParent()
           
 EquivRecord Circuit.getParent()
           
static EquivRecord EquivRecord.newLeafRecord(int key, java.util.List<Circuit> ckts, NccGlobals globals)
          Construct a leaf EquivRecord that holds circuits
static EquivRecord EquivRecord.newRootRecord(java.util.List<EquivRecord> offspring)
          Construct an internal EquivRecord that will serve as the root of the EquivRecord tree
 

Methods in com.sun.electric.tool.ncc.trees that return types with arguments of type EquivRecord
 java.util.Iterator<EquivRecord> LeafEquivRecords.getMatched()
           
 java.util.Iterator<EquivRecord> LeafEquivRecords.getNotMatched()
           
 java.util.Iterator<EquivRecord> EquivRecord.getOffspring()
          get offspring of internal record
 

Methods in com.sun.electric.tool.ncc.trees with parameters of type EquivRecord
 void EquivRecord.checkMe(EquivRecord parent)
           
 void Circuit.checkMe(EquivRecord parent)
           
 void EquivRecord.setParent(EquivRecord x)
           
 void Circuit.setParent(EquivRecord p)
           
 

Method parameters in com.sun.electric.tool.ncc.trees with type arguments of type EquivRecord
static EquivRecord EquivRecord.newRootRecord(java.util.List<EquivRecord> offspring)
          Construct an internal EquivRecord that will serve as the root of the EquivRecord tree
 

Constructors in com.sun.electric.tool.ncc.trees with parameters of type EquivRecord
LeafEquivRecords(EquivRecord root, NccGlobals globals)