Home | History | Annotate | Download | only in scripts

Lines Matching refs:table

36     table = {}
38 process(arg, table)
41 printresults(table)
44 inv = inverse(table)
48 reach = closure(table)
66 def process(filename, table):
71 table[mod] = list = []
94 def closure(table):
95 modules = list(table.keys())
97 # Initialize reach with a copy of table
101 reach[mod] = table[mod][:]
119 # Invert a table (this is again totally general).
120 # All keys of the original table are made keys of the inverse,
123 def inverse(table):
125 for key in table.keys():
128 for item in table[key]:
146 def printresults(table):
147 modules = sorted(table.keys())
151 list = sorted(table[mod])