Home
last modified time | relevance | path

Searched refs:zeroVerts (Results 1 – 1 of 1) sorted by relevance

/tools/tradefederation/core/src/com/android/tradefed/util/
DDirectedGraph.java111 Stack<V> zeroVerts = new Stack<V>(); in topSort() local
114 zeroVerts.push(v); in topSort()
119 while (!zeroVerts.isEmpty()) { in topSort()
121 V v = zeroVerts.pop(); in topSort()
129 zeroVerts.push(neighbor); in topSort()