HomeSort by relevance Sort by last modified time
    Searched full:addnode (Results 1 - 25 of 103) sorted by null

1 2 3 4 5

  /external/v8/src/compiler/
raw-machine-assembler.h 80 return AddNode(common()->Int32Constant(value));
83 return AddNode(common()->Int64Constant(value));
86 return AddNode(common()->NumberConstant(value));
89 return AddNode(common()->Float32Constant(value));
92 return AddNode(common()->Float64Constant(value));
95 return AddNode(common()->HeapConstant(object));
102 return AddNode(common()->ExternalConstant(address));
106 return AddNode(common()->Projection(index), a);
114 return AddNode(machine()->Load(rep), base, index);
122 return AddNode(machine()->Store(StoreRepresentation(rep, write_barrier))
    [all...]
raw-machine-assembler.cc 33 AddNode(common()->Parameter(static_cast<int>(i)), graph->start());
66 Node* branch = AddNode(common()->Branch(), condition);
78 Node* switch_node = AddNode(common()->Switch(succ_count), index);
85 schedule()->AddNode(case_block, case_node);
90 schedule()->AddNode(default_block, default_node);
134 return AddNode(common()->Call(desc), input_count, buffer);
152 return AddNode(common()->Call(desc), input_count, buffer);
163 Node* ref = AddNode(
167 return AddNode(common()->Call(descriptor), centry, arg1, ref, arity, context);
178 Node* ref = AddNode(
    [all...]
schedule.cc 53 void BasicBlock::AddNode(Node* node) { nodes_.push_back(node); }
184 void Schedule::AddNode(BasicBlock* block, Node* node) {
191 block->AddNode(node);
schedule.h 99 void AddNode(Node* node);
204 void AddNode(BasicBlock* block, Node* node);
  /external/testng/src/test/java/test/
DynamicGraphTest.java 20 dg.addNode("a1");
21 dg.addNode("a2");
22 dg.addNode("b1");
23 dg.addNode("b2");
24 dg.addNode("c1");
31 dg.addNode("x");
32 dg.addNode("y");
54 dg.addNode("a1");
55 dg.addNode("a2");
56 dg.addNode("b1")
    [all...]
GraphTest.java 22 g.addNode("3");
23 g.addNode("1");
24 g.addNode("2.2");
25 g.addNode("independent");
26 g.addNode("2.1");
27 g.addNode("2");
74 g.addNode("3");
75 g.addNode("2");
76 g.addNode("1");
88 g.addNode("3")
    [all...]
  /external/testng/src/main/java/org/testng/internal/
Tarjan.java 57 g.addNode("a");
58 g.addNode("b");
59 g.addNode("c");
60 g.addNode("d");
  /frameworks/compile/mclinker/unittests/
GraphTest.cpp 39 ListDigraph::Node* u1 = graph.addNode();
40 ListDigraph::Node* u2 = graph.addNode();
41 ListDigraph::Node* u3 = graph.addNode();
86 ListDigraph::Node* u1 = graph.addNode();
87 ListDigraph::Node* u2 = graph.addNode();
88 ListDigraph::Node* u3 = graph.addNode();
133 ListDigraph::Node* u1 = graph.addNode();
134 ListDigraph::Node* u2 = graph.addNode();
135 ListDigraph::Node* u3 = graph.addNode();
180 ListDigraph::Node* u1 = graph.addNode();
    [all...]
  /external/v8/test/cctest/compiler/
test-multiple-return.cc 100 Node* ret3 = mt.AddNode(mt.common()->Call(desc), mt.HeapConstant(code), a, b);
101 Node* x = mt.AddNode(mt.common()->Projection(0), ret3);
102 Node* y = mt.AddNode(mt.common()->Projection(1), ret3);
103 Node* z = mt.AddNode(mt.common()->Projection(2), ret3);
test-instruction.cc 56 schedule.AddNode(schedule.start(), node);
62 schedule.AddNode(schedule.start(), node);
68 schedule.AddNode(schedule.start(), node);
74 schedule.AddNode(block, node);
  /external/v8/test/unittests/compiler/
instruction-selector-unittest.cc 247 m.AddNode(m.common()->FinishRegion(), param, m.graph()->start());
336 m2.Return(m2.AddNode(
338 m2.AddNode(m2.common()->BeginRegion(), m2.graph()->start())));
374 m.AddNode(m.common()->TypedStateValues(&int32_type), m.Int32Constant(1));
375 Node* locals = m.AddNode(m.common()->TypedStateValues(&empty_types));
376 Node* stack = m.AddNode(m.common()->TypedStateValues(&empty_types));
378 Node* state_node = m.AddNode(
429 m.AddNode(m.common()->TypedStateValues(&int32_type), m.Int32Constant(43));
430 Node* locals = m.AddNode(m.common()->TypedStateValues(&float64_type),
432 Node* stack = m.AddNode(m.common()->TypedStateValues(&tagged_type)
    [all...]
schedule-unittest.cc 97 TEST_F(ScheduleTest, AddNode) {
103 schedule.AddNode(start, node0);
109 schedule.AddNode(start, node1);
  /external/chromium-trace/catapult/telemetry/third_party/altgraph/altgraph/
ObjectGraph.py 147 def addNode(self, node):
151 self.msg(4, "addNode", node)
178 self.addNode(m)
  /external/chromium-trace/catapult/telemetry/third_party/altgraph/altgraph_tests/
test_object_graph.py 60 graph.addNode(n1)
61 graph.addNode(n2)
62 graph.addNode(n3)
90 graph.addNode(n3)
  /external/guice/extensions/grapher/src/com/google/inject/grapher/graphviz/
GraphvizGrapher.java 247 addNode(gnode);
263 addNode(gnode);
285 addNode(gnode);
322 private void addNode(GraphvizNode node) {
  /external/chromium-trace/catapult/telemetry/third_party/altgraph/doc/
objectgraph.rst 29 .. method:: ObjectGraph.addNode(node)
40 node using :meth:`addNode`.
  /external/llvm/unittests/ADT/
SCCIteratorTest.cpp 51 /// AddNode - Add the node with the given index to the subset.
52 void AddNode(unsigned Idx) {
115 Nodes[FromIdx].second.AddNode(ToIdx);
141 Reachable.AddNode(Idx);
283 NodesInThisSCC.AddNode(SCC[i]->first);
  /external/apache-xml/src/main/java/org/apache/xpath/objects/
XNodeSetForDOM.java 46 ((NodeSetDTM) m_obj).addNode(dtmHandle);
  /external/llvm/include/llvm/CodeGen/
LatencyPriorityQueue.h 57 void addNode(const SUnit *SU) override {
  /external/v8/src/
futex-emulation.h 69 void AddNode(FutexWaitListNode* node);
futex-emulation.cc 44 void FutexWaitList::AddNode(FutexWaitListNode* node) {
119 wait_list_.Pointer()->AddNode(node);
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
HtmlUtils.java 90 public void addNode(HtmlDocument.Node n, int nodeNum, int endNum) {
92 mTextConverter.addNode(n, nodeNum, endNum);
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/
HtmlTree.java 79 void addNode(HtmlDocument.Node n, int nodeNum, int endNum);
573 converter.addNode(nodes.get(i), i, ends.get(i));
621 converter.addNode(nodes.get(i), i, ends.get(i));
892 public void addNode(HtmlDocument.Node n, int nodeNum, int endNum) {
1000 addNode(t, nodenum, -1);
    [all...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/de/pdark/decentxml/1.3/
decentxml-1.3.jar 
  /prebuilts/tools/common/m2/repository/de/pdark/decentxml/1.3/
decentxml-1.3.jar 

Completed in 349 milliseconds

1 2 3 4 5