Lines Matching defs:cycle
103 // If we encountered this edge earlier in the call stack we have a cycle.
161 // cycle detector if the validation node depends on this node.
229 // If we have no temporary mark on the edge then we do not yet have a cycle.
239 // Make the cycle clear by reporting its start as the node at its end
247 // Construct the error message rejecting the cycle.
248 *err = "dependency cycle: ";
447 std::string cycle;
449 cycle.append(*it + " -> ");
450 cycle.append(var);
451 Fatal(("cycle in rule variables: " + cycle).c_str());