Home | History | Annotate | Download | only in utils

Lines Matching refs:DOT

38 # Find the "dot" program
41 chomp($DotPath = `which dot`);
42 die "Can't find 'dot'" if (! -x "$DotPath");
289 if (!$FLAT) { print DOT "$lib_ns -> $key [ weight=0 ];\n" };
291 if (!$FLAT) { print DOT "$lib_ns -> $key [ weight=10];\n" };
311 open DOT, "| $DotPath -Tgif > libdeps.gif";
313 print DOT "digraph LibDeps {\n";
314 print DOT " size=\"40,15\"; \n";
315 print DOT " ratio=\"1.33333\"; \n";
316 print DOT " margin=\"0.25\"; \n";
317 print DOT " rankdir=\"LR\"; \n";
318 print DOT " mclimit=\"50.0\"; \n";
319 print DOT " ordering=\"out\"; \n";
320 print DOT " center=\"1\";\n";
321 print DOT "node [shape=\"box\",\n";
322 print DOT " color=\"#000088\",\n";
323 print DOT " fillcolor=\"#FFFACD\",\n";
324 print DOT " fontcolor=\"#3355BB\",\n";
325 print DOT " style=\"filled\",\n";
326 print DOT " fontname=\"sans\",\n";
327 print DOT " fontsize=\"24\"\n";
328 print DOT "];\n";
329 print DOT "edge [dir=\"forward\",style=\"solid\",color=\"#000088\"];\n";
350 print DOT "}\n";
351 close DOT;
352 open DOT, "| $DotPath -Tgif > objdeps.gif";
353 print DOT "digraph ObjDeps {\n";
354 print DOT " size=\"8,10\";\n";
355 print DOT " margin=\"0.25\";\n";
356 print DOT " rankdir=\"LR\";\n";
357 print DOT " mclimit=\"50.0\";\n";
358 print DOT " ordering=\"out\";\n";
359 print DOT " center=\"1\";\n";
360 print DOT "node [shape=\"box\",\n";
361 print DOT " color=\"#000088\",\n";
362 print DOT " fillcolor=\"#FFFACD\",\n";
363 print DOT " fontcolor=\"#3355BB\",\n";
364 print DOT " fontname=\"sans\",\n";
365 print DOT " style=\"filled\",\n";
366 print DOT " fontsize=\"24\"\n";
367 print DOT "];\n";
368 print DOT "edge [dir=\"forward\",style=\"solid\",color=\"#000088\"];\n";
377 print DOT "}\n";
378 close DOT;