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.java109 Stack<V> zeroVerts = new Stack<V>(); in topSort() local
112 zeroVerts.push(v); in topSort()
117 while (!zeroVerts.isEmpty()) { in topSort()
119 V v = zeroVerts.pop(); in topSort()
127 zeroVerts.push(neighbor); in topSort()