Searched refs:graph (Results 1 - 25 of 206) sorted by relevance

123456789

/macosx-10.10.1/CPANInternal-159.1/Graph-0.94/t/
H A Du_te_ea.t7 my $graph = Graph->new( undirected => 1 );
9 $graph->add_vertex("Berlin");
10 $graph->add_vertex("Bonn");
11 $graph->add_edge("Berlin","Bonn");
12 is ("$graph","Berlin=Bonn");
13 $graph->set_edge_attributes("Berlin", "Bonn", { color => "red" });
14 is ("$graph","Berlin=Bonn");
16 $graph = Graph->new( undirected => 1 );
18 $graph->add_vertex("Berlin");
19 $graph
[all...]
/macosx-10.10.1/CPANInternal-159.1/Graph-0.96/t/
H A Du_te_ea.t7 my $graph = Graph->new( undirected => 1 );
9 $graph->add_vertex("Berlin");
10 $graph->add_vertex("Bonn");
11 $graph->add_edge("Berlin","Bonn");
12 is ("$graph","Berlin=Bonn");
13 $graph->set_edge_attributes("Berlin", "Bonn", { color => "red" });
14 is ("$graph","Berlin=Bonn");
16 $graph = Graph->new( undirected => 1 );
18 $graph->add_vertex("Berlin");
19 $graph
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/tklib/tklib/examples/plotchart/
H A Deditgraph.tcl12 variable graph
32 variable graph
35 toplevel .graph
36 wm title .graph "Editing series"
37 canvas .graph.c -width 400 -height 300
38 button .graph.ok -text OK -width 10 -command {::Editgraph::SaveSeries}
39 button .graph.cancel -text Cancel -width 10 -command {::Editgraph::CancelSeries}
40 grid .graph.c -
41 grid .graph.ok .graph
[all...]
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DNetworkTimelineOverviewGraph.css26 .timeline-overview-graph.network {
30 .timeline-overview-graph.network > .graph-row {
34 .timeline-overview-graph.network > .graph-row > .timeline-record-bar {
39 .timeline-overview-graph.network > .graph-row > .timeline-record-bar > .segment:not(.inactive) {
43 .timeline-overview-graph.network:nth-child(even) > .graph-row > .timeline-record-bar > .segment:not(.inactive) {
H A DLayoutTimelineOverviewGraph.css26 .timeline-overview-graph.layout > .timeline-record-bar {
31 .timeline-overview-graph.layout > .timeline-record-bar > .segment {
H A DScriptTimelineOverviewGraph.css26 .timeline-overview-graph.script > .timeline-record-bar {
31 .timeline-overview-graph.script > .timeline-record-bar > .segment {
/macosx-10.10.1/JavaScriptCore-7600.1.17/ftl/
H A DFTLState.cpp40 State::State(Graph& graph) argument
41 : graph(graph)
49 switch (graph.m_plan.mode) {
56 code->initializeEntryBuffer(graph.m_vm, graph.m_profiledBlock->m_numCalleeRegisters);
57 code->setBytecodeIndex(graph.m_plan.osrEntryBytecodeIndex);
66 finalizer = new JITFinalizer(graph.m_plan);
67 graph.m_plan.finalizer = adoptPtr(finalizer);
77 dataLog("LLVM IR for ", CodeBlockWithJITType(graph
[all...]
H A DFTLFail.cpp41 state.graph.m_plan.finalizer = adoptPtr(new FailedFinalizer(state.graph.m_plan));
/macosx-10.10.1/ruby-106/ruby/ext/tk/sample/tkextlib/blt/
H A Dgraph7.rb6 graph = Tk::BLT::Graph.new(:title=>"Scatter Plot\n#{length} points")
7 graph.xaxis_configure(:loose=>false, :title=>'X Axis Label')
8 graph.yaxis_configure(:title=>'Y Axis Label')
9 graph.legend_configure(:activerelief=>:sunken, :background=>'')
11 Tk::BLT::Table.add(Tk.root, graph, [0,0], :fill=>:both)
19 plot = Tk::BLT::PlotComponent::Element.new(graph, :symbol=>:square,
27 #graph.zoom_stack
28 #graph.crosshairs
29 #graph.active_legend
30 #graph
[all...]
H A Dgraph7b.rb6 graph = Tk::BLT::Graph.new(:title=>"Scatter Plot\n#{length} points")
7 graph.xaxis_configure(:loose=>false, :title=>'X Axis Label')
8 graph.yaxis_configure(:title=>'Y Axis Label')
9 graph.legend_configure(:activerelief=>:sunken, :background=>'')
11 Tk::BLT::Table.add(Tk.root, graph, [0,0], :fill=>:both)
20 plot = Tk::BLT::PlotComponent::Element.new(graph, :symbol=>:square,
28 #graph.zoom_stack
29 #graph.crosshairs
30 #graph.active_legend
31 #graph
[all...]
H A Dgraph7c.rb6 graph = Tk::BLT::Graph.new(:title=>"Scatter Plot\n#{length} points")
7 graph.xaxis_configure(:loose=>false, :title=>'X Axis Label')
8 graph.yaxis_configure(:title=>'Y Axis Label')
9 graph.legend_configure(:activerelief=>:sunken, :background=>'')
11 Tk::BLT::Table.add(Tk.root, graph, [0,0], :fill=>:both)
24 plot = Tk::BLT::PlotComponent::Element.new(graph, :symbol=>:square,
32 #graph.zoom_stack
33 #graph.crosshairs
34 #graph.active_legend
35 #graph
[all...]
H A Dplot1.rb5 graph = Tk::BLT::Graph.new.pack
6 plot = Tk::BLT::PlotComponent::Element.new(graph, :linewidth=>0, :label=>'foo')
H A Dplot1b.rb5 graph = Tk::BLT::Graph.new.pack
6 plot = graph.element_create
H A Dgraph7a.rb29 graph = Tk::BLT::Graph.new(:title=>"Scatter Plot\n#{length} points")
30 graph.xaxis_configure(:loose=>false, :title=>'X Axis Label')
31 graph.yaxis_configure(:title=>'Y Axis Label')
32 graph.legend_configure(:activerelief=>:sunken, :background=>'')
34 Tk::BLT::Table.add(Tk.root, graph, [0,0], :fill=>:both)
42 plot = Tk::BLT::PlotComponent::Element.new(graph, :symbol=>:square,
50 #graph.zoom_stack
51 #graph.crosshairs
52 #graph.active_legend
53 #graph
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/dfg/
H A DDFGClobberize.cpp35 bool doesWrites(Graph& graph, Node* node) argument
39 clobberize(graph, node, addRead, addWrite);
43 bool writesOverlap(Graph& graph, Node* node, AbstractHeap heap) argument
47 clobberize(graph, node, addRead, addWrite);
H A DDFGGraphSafepoint.cpp36 GraphSafepoint::GraphSafepoint(Graph& graph, Safepoint::Result& result) argument
37 : m_safepoint(graph.m_plan, result)
39 m_safepoint.add(&graph);
H A DDFGDominators.cpp44 void Dominators::compute(Graph& graph) argument
48 ASSERT(graph.block(0)->predecessors.isEmpty());
50 unsigned numBlocks = graph.numBlocks();
67 if (!graph.block(i))
74 if (!graph.block(i) || graph.block(i)->predecessors.isEmpty())
86 changed |= pruneDominators(graph, i);
94 changed |= pruneDominators(graph, i);
98 bool Dominators::pruneDominators(Graph& graph, BlockIndex idx) argument
100 BasicBlock* block = graph
116 dump(Graph& graph, PrintStream& out) const argument
[all...]
H A DDFGPhase.h38 Phase(Graph& graph, const char* name) argument
39 : m_graph(graph)
52 Graph& graph() { return m_graph; } function in class:JSC::DFG::Phase
76 if (result && logCompilationChanges(phase.graph().m_plan.mode))
82 bool runPhase(Graph& graph) argument
84 PhaseType phase(graph);
H A DDFGBasicBlockInlines.h37 Node* BasicBlock::appendNode(Graph& graph, SpeculatedType type, Params... params) argument
39 Node* result = graph.addNode(type, params...);
45 Node* BasicBlock::appendNonTerminal(Graph& graph, SpeculatedType type, Params... params) argument
47 Node* result = graph.addNode(type, params...);
H A DDFGEdgeDominates.h39 EdgeDominates(Graph& graph, BasicBlock* block) argument
40 : m_graph(graph)
65 inline bool edgesDominate(Graph& graph, Node* node, BasicBlock* block) argument
67 EdgeDominates edgeDominates(graph, block);
68 DFG_NODE_DO_TO_CHILDREN(graph, node, edgeDominates);
H A DDFGResurrectionForValidationPhase.cpp41 ResurrectionForValidationPhase(Graph& graph) argument
42 : Phase(graph, "resurrection for validation")
70 bool performResurrectionForValidation(Graph& graph) argument
73 return runPhase<ResurrectionForValidationPhase>(graph);
H A DDFGAnalysis.h52 void computeIfNecessary(Graph& graph) argument
59 static_cast<T*>(this)->compute(graph);
H A DDFGEdgeUsesStructure.h53 inline bool edgesUseStructure(Graph& graph, Node* node) argument
56 DFG_NODE_DO_TO_CHILDREN(graph, node, edgeUsesStructure);
H A DDFGLoopPreHeaderCreationPhase.cpp40 BasicBlock* createPreHeader(Graph& graph, BlockInsertionSet& insertionSet, BasicBlock* block) argument
45 graph, SpecNone, Jump, block->at(0)->origin, OpInfo(block));
49 if (graph.m_dominators.dominates(block, predecessor))
68 LoopPreHeaderCreationPhase(Graph& graph) argument
69 : Phase(graph, "loop pre-header creation")
70 , m_insertionSet(graph)
108 bool performLoopPreHeaderCreation(Graph& graph) argument
111 return runPhase<LoopPreHeaderCreationPhase>(graph);
/macosx-10.10.1/JavaScriptCore-7600.1.17/runtime/
H A DDumpContext.cpp32 : graph(0)

Completed in 305 milliseconds

123456789