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");
291 if (!$FLAT) { print DOT "$lib_ns -> $key [ weight=0 ];\n" };
293 if (!$FLAT) { print DOT "$lib_ns -> $key [ weight=10];\n" };
313 open DOT, "| $DotPath -Tgif > libdeps.gif";
315 print DOT "digraph LibDeps {\n";
316 print DOT " size=\"40,15\"; \n";
317 print DOT " ratio=\"1.33333\"; \n";
318 print DOT " margin=\"0.25\"; \n";
319 print DOT " rankdir=\"LR\"; \n";
320 print DOT " mclimit=\"50.0\"; \n";
321 print DOT " ordering=\"out\"; \n";
322 print DOT " center=\"1\";\n";
323 print DOT "node [shape=\"box\",\n";
324 print DOT " color=\"#000088\",\n";
325 print DOT " fillcolor=\"#FFFACD\",\n";
326 print DOT " fontcolor=\"#3355BB\",\n";
327 print DOT " style=\"filled\",\n";
328 print DOT " fontname=\"sans\",\n";
329 print DOT " fontsize=\"24\"\n";
330 print DOT "];\n";
331 print DOT "edge [dir=\"forward\",style=\"solid\",color=\"#000088\"];\n";
352 print DOT "}\n";
353 close DOT;
354 open DOT, "| $DotPath -Tgif > objdeps.gif";
355 print DOT "digraph ObjDeps {\n";
356 print DOT " size=\"8,10\";\n";
357 print DOT " margin=\"0.25\";\n";
358 print DOT " rankdir=\"LR\";\n";
359 print DOT " mclimit=\"50.0\";\n";
360 print DOT " ordering=\"out\";\n";
361 print DOT " center=\"1\";\n";
362 print DOT "node [shape=\"box\",\n";
363 print DOT " color=\"#000088\",\n";
364 print DOT " fillcolor=\"#FFFACD\",\n";
365 print DOT " fontcolor=\"#3355BB\",\n";
366 print DOT " fontname=\"sans\",\n";
367 print DOT " style=\"filled\",\n";
368 print DOT " fontsize=\"24\"\n";
369 print DOT "];\n";
370 print DOT "edge [dir=\"forward\",style=\"solid\",color=\"#000088\"];\n";
379 print DOT "}\n";
380 close DOT;