Home | History | Annotate | Download | only in tld_cleanup

Lines Matching refs:incoming

261     """Count incoming references"""
305 incoming = {}
308 """Counts incoming references."""
310 if id(node) not in incoming:
311 incoming[id(node)] = 1
315 incoming[id(node)] += 1
321 incoming[id(node)] -= 1
323 waiting = [node for node in dafsa if incoming[id(node)] == 0]
328 assert incoming[id(node)] == 0
332 incoming[id(child)] -= 1
333 if incoming[id(child)] == 0: