114115116117118119120121122123124
//Seed the seach Q NodeIterable iter = hgraph.getNodes(); for (Node first : iter) { if (color[indicies.get(first)] == 0) { Q.add(first); iter.doBreak(); break; } } //While there are more nodes to search
196197198199200201202203204205206
Node first = null; NodeIterable iter = hgraph.getNodes(); for (Node u : iter) { if (index[indicies.get(u)] == 0) { first = u; iter.doBreak(); break; } } if (first == null) { hgraph.readUnlockAll();
147148149150151152153154155156157
//Seed the seach Q NodeIterable iter = graph.getNodes(); for (Node first : iter) { if (color[indicies.get(first)] == 0) { Q.add(first); iter.doBreak(); break; } } //While there are more nodes to search
269270271272273274275276277278279
Node first = null; NodeIterable iter = graph.getNodes(); for (Node u : iter) { if (index[indicies.get(u)] == 0) { first = u; iter.doBreak(); break; } } if (first == null) { return allComponents;
5051525354555657585960
if ( debug ) { ScriptableObject.putProperty(global, "strikeThePose", new BaseFunction() { @Override public Object call(Context cx, Scriptable scope, Scriptable thisObj, Object[] args) { main.doBreak(); return Undefined.instance; } }); }
4445464748495051525354
} this.rhinoContext = setUpRhinoScope(); if (this.suiteAnnotation.debug()) { debugger.doBreak(); } } private RhinoContext setUpRhinoScope() { RhinoContext context = new RhinoContext();