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()
          get the root of equivalence record subtree for Parts
 EquivRecord NccGlobals.getPorts()
          get the root of the equivalence record subtree for Ports
 EquivRecord NccGlobals.getRoot()
          get the root of the equivalence record tree
 EquivRecord NccGlobals.getWires()
          get the root of the equivalence record subtree for Wires
 

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 StratHashParts.doFor(EquivRecord g)
           
 LeafList StratCheck.doFor(EquivRecord j)
           
 LeafList StratCheckSizes.doFor(EquivRecord j)
           
 LeafList Strategy.doFor(EquivRecord rr)
          Method doFor(EquivRecord) processes a single EquivRecord.
 LeafList StratPrint.doFor(EquivRecord j)
           
 LeafList StratCount.doFor(EquivRecord j)
           
 LeafList StratPortName.doFor(EquivRecord g)
           
 LeafList StratHashWires.doFor(EquivRecord g)
           
 LeafList StratDebug.doFor(EquivRecord er)
           
static LeafList StratHashParts.doYourJob(EquivRecord er, NccGlobals globals)
           
static LeafList StratCheck.doYourJob(EquivRecord j, NccGlobals globals)
           
static LeafList StratPrint.doYourJob(EquivRecord j, NccGlobals globals)
           
static LeafList StratHashWires.doYourJob(EquivRecord er, 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 StratHashParts.doYourJob(java.util.Iterator<EquivRecord> it, NccGlobals globals)
           
static LeafList StratHashWires.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 Circuit.getParent()
           
 EquivRecord EquivRecord.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 Circuit.checkMe(EquivRecord parent)
           
 void EquivRecord.checkMe(EquivRecord parent)
          Sanity check
 void Circuit.setParent(EquivRecord p)
           
 void EquivRecord.setParent(EquivRecord x)
          Set my parent to be x
 

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)