HomeSort by relevance Sort by last modified time
    Searched defs:node1 (Results 1 - 25 of 233) sorted by null

1 2 3 4 5 6 7 8 910

  /frameworks/base/libs/hwui/tests/unit/
DamageAccumulatorTests.cpp 86 RenderNode node1; local
87 node1.animatorProperties().setLeftTopRightBottom(50, 50, 500, 500);
88 node1.animatorProperties().updateMatrix();
89 da.pushTransform(&node1);
106 RenderNode node1; local
107 node1.animatorProperties().setLeftTopRightBottom(50, 50, 500, 500);
108 node1.animatorProperties().setClipToBounds(true);
109 node1.animatorProperties().updateMatrix();
110 da.pushTransform(&node1);
  /external/libxml2/doc/examples/
tree2.c 29 xmlNodePtr root_node = NULL, node = NULL, node1 = NULL;/* node pointers */ local
51 xmlNewChild(root_node, NULL, BAD_CAST "node1",
74 node1 = xmlNewText(BAD_CAST
76 xmlAddChild(node, node1);
87 node1 = xmlNewChild(node, NULL, BAD_CAST buff, NULL);
88 xmlNewProp(node1, BAD_CAST "odd", BAD_CAST((j % 2) ? "no" : "yes"));
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/
YamlComposeTest.java 43 ScalarNode node1 = (ScalarNode) node.getValue().get(0).getKeyNode(); local
44 assertEquals("abc", node1.getValue());
  /system/timezone/tzlookup_generator/src/test/java/com/android/libcore/timezone/tzlookup/zonetree/
TreeNodeTest.java 72 TestTreeNode node1 = new TestTreeNode("1"); local
83 node1.addChild(node11);
84 node1.addChild(node12);
92 assertTrue(node1.isRoot());
93 assertFalse(node1.isLeaf());
101 node1.visitSelfThenChildrenRecursive(testVisitor);
107 node1.removeChild(node11);
114 node1.visitSelfThenChildrenRecursive(testVisitor);
127 TestTreeNode node1 = new TestTreeNode("1"); local
129 node1.addChild(node11)
    [all...]
  /external/snakeyaml/src/test/java/examples/jodatime/
JodaTimeFlowStylesTest.java 51 Node node1 = dumper.represent(bean); local
56 assertEquals(node2.toString(), node1.toString());
58 List<Event> events1 = dumper.serialize(node1);
  /external/clang/test/SemaCXX/
arrow-operator.cpp 35 Node** node1; local
36 Line_Segment(node1->Location()); // expected-error {{not a structure or union}}
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
vp8_partition_aggregator_unittest.cc 21 PartitionTreeNode* node1 = local
24 new PartitionTreeNode(node1, kVector, kNumPartitions, 17);
25 delete node1;
  /frameworks/base/cmds/statsd/tests/
LogEvent_test.cpp 30 AttributionNodeInternal node1; local
31 node1.set_uid(1000);
32 node1.set_tag("tag1");
33 nodes.push_back(node1);
100 AttributionNodeInternal node1; local
101 node1.set_uid(1000);
102 node1.set_tag("tag1");
103 nodes.push_back(node1);
  /external/llvm/lib/Target/AArch64/
AArch64PBQPRegAlloc.cpp 174 PBQPRAGraph::NodeId node1 = G.getMetadata().getNodeIdForVReg(Rd); local
178 &G.getNodeMetadata(node1).getAllowedRegs();
182 PBQPRAGraph::EdgeId edge = G.findEdge(node1, node2);
203 G.addEdge(node1, node2, std::move(costs));
208 std::swap(node1, node2);
261 PBQPRAGraph::NodeId node1 = G.getMetadata().getNodeIdForVReg(Rd); local
272 &G.getNodeMetadata(node1).getAllowedRegs();
278 PBQPRAGraph::EdgeId edge = G.findEdge(node1, node2);
285 std::swap(node1, node2);
  /external/ltp/testcases/kernel/syscalls/move_pages/
move_pages12.c 61 static unsigned int node1, node2; variable
82 nodes[j] = node1;
190 ret = get_allowed_nodes(NH_MEMS, TEST_NODES, &node1, &node2);
205 node1, hpsz);
216 hpsz, node1, orig_hugepages_node1 + 4);
240 alloc_free_huge_on_node(node1, 4L * hpsz);
  /external/one-true-awk/
parse.c 50 Node *node1(int a, Node *b) function
100 x = node1(a,b);
136 x = node1(a,b);
174 x = node1(0, (Node *) a);
  /external/tensorflow/tensorflow/contrib/lite/
model_test.cc 182 const TfLiteNode& node1 = node_and_reg1->first; local
188 ASSERT_TRUE(TfLiteIntArrayEqual(node1.inputs, desired_inputs));
189 ASSERT_TRUE(TfLiteIntArrayEqual(node1.outputs, desired_outputs));
  /external/tensorflow/tensorflow/core/kernels/
immutable_constant_op_test.cc 93 auto node1 = local
97 auto result = ops::MatMul(root, node1, node2);
125 auto node1 = local
129 auto result = ops::MatMul(root, node1, node2);
166 auto node1 = ops::ImmutableConst(root, DT_FLOAT, kFileTensorShape, two_file); local
169 auto result = ops::MatMul(root, node1, node2, ops::MatMul::TransposeB(true));
remote_fused_graph_execute_op_test_utils.cc 48 Output node1 = ops::Const(root.WithOpName(name1), val1); local
50 node0, node1);
  /external/zopfli/src/zopfli/
katajainen.c 149 Node* node1 = GetFreeNode(0, maxbits, pool); local
151 InitNode(leaves[1].weight, 2, 0, node1);
154 lists[i][1] = node1;
  /frameworks/support/coordinatorlayout/src/androidTest/java/androidx/coordinatorlayout/widget/
DirectedAcyclicGraphTest.java 114 final TestNode node1 = new TestNode("1"); local
117 mGraph.addNode(node1);
121 mGraph.addEdge(node1, edge);
124 // Now assert the getOutgoingEdges returns a list which has 2 elements (node1 & node2)
128 assertTrue(outgoingEdges.contains(node1));
149 final TestNode node1 = new TestNode("1"); local
152 mGraph.addNode(node1);
161 assertFalse(mGraph.contains(node1));
168 final TestNode node1 = new TestNode("A"); local
174 mGraph.addNode(node1);
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
ScriptGroupTest.java 231 ScriptC_scriptgroup node1, node2, node3, node4, node5, compare; local
232 node1 = new ScriptC_scriptgroup(mRS);
247 node1.set_memset_toValue(1);
248 node1.forEach_memset(in1);
249 node1.set_memset_toValue(2);
250 node1.forEach_memset(in2);
252 node1.set_arith_operation(2);
261 node1.set_arith_value(5);
266 b.addKernel(node1.getKernelID_arith());
272 b.addConnection(connect, node1.getKernelID_arith(), node2.getKernelID_arith())
    [all...]
  /external/tensorflow/tensorflow/core/grappler/
utils.cc 123 string node1 = ParseNodeName(name1, &position1); local
126 return (position1 == position2) && (node1 == node2);
  /packages/apps/Nfc/nci/jni/
RouteDataSet.cpp 164 xmlNodePtr node1; local
176 node1 = xmlDocGetRootElement(doc);
177 if (node1 == NULL) {
182 << StringPrintf("%s: root=%s", fn, node1->name);
184 node1 = node1->xmlChildrenNode;
185 while (node1) // loop through all elements in <Routes ...
187 if (xmlStrcmp(node1->name, (const xmlChar*)"Route") == 0) {
188 xmlChar* value = xmlGetProp(node1, (const xmlChar*)"Type");
193 xmlNodePtr node2 = node1->xmlChildrenNode
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/objects/
XNodeSet.java 496 int node1; local
499 while (DTM.NULL != (node1 = list1.nextNode()))
501 XMLString s1 = getStringFromNode(node1);
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/PBQP/
Graph.h 82 NodeItr node1, node2; member in class:PBQP::Graph::EdgeEntry
87 EdgeEntry(NodeItr node1, NodeItr node2, const Matrix &costs)
88 : node1(node1), node2(node2), costs(costs) {}
89 NodeItr getNode1() const { return node1; }
  /external/snakeyaml/src/test/java/org/pyyaml/
PyStructureTest.java 124 private void compareNodes(Node node1, Node node2) {
125 assertEquals(node1.getClass(), node2.getClass());
126 if (node1 instanceof ScalarNode) {
127 ScalarNode scalar1 = (ScalarNode) node1;
132 if (node1 instanceof SequenceNode) {
133 SequenceNode seq1 = (SequenceNode) node1;
143 MappingNode seq1 = (MappingNode) node1;
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
RegAllocPBQP.cpp 397 PBQP::Graph::NodeItr node1 = p->getNodeForVReg(dst); local
399 PBQP::Graph::EdgeItr edge = g.findEdge(node1, node2);
401 edge = g.addEdge(node1, node2, PBQP::Matrix(allowed1->size() + 1,
406 std::swap(node1, node2);
  /external/adhd/cras/src/tests/
iodev_list_unittest.cc 117 memset(&node1, 0, sizeof(node1));
129 d1_.nodes = &node1;
130 d1_.active_node = &node1;
233 struct cras_ionode node1, node2, node3; member in class:__anon14152::IoDevTestSuite
483 node1.idx = 1;
551 node1.idx = 1;
    [all...]
  /external/opencv/cv/src/
cvhistogram.cpp 516 CvSparseNode *node1, *node2; local
527 for( node1 = cvInitSparseMatIterator( mat1, &iterator );
528 node1 != 0; node1 = cvGetNextSparseNode( &iterator ))
530 double v1 = *(float*)CV_NODE_VAL(mat1,node1);
531 uchar* node2_data = cvPtrND( mat2, CV_NODE_IDX(mat1,node1), 0, 0, &node1->hashval );
559 for( node1 = cvInitSparseMatIterator( mat1, &iterator );
560 node1 != 0; node1 = cvGetNextSparseNode( &iterator )
    [all...]

Completed in 861 milliseconds

1 2 3 4 5 6 7 8 910