HomeSort by relevance Sort by last modified time
    Searched refs:node2 (Results 1 - 25 of 254) sorted by null

1 2 3 4 5 6 7 8 91011

  /frameworks/base/libs/hwui/tests/unit/
DamageAccumulatorTests.cpp 91 RenderNode node2; local
92 node2.animatorProperties().setLeftTopRightBottom(50, 50, 100, 100);
93 node2.animatorProperties().updateMatrix();
94 da.pushTransform(&node2);
112 RenderNode node2; local
113 node2.animatorProperties().setLeftTopRightBottom(50, 50, 100, 100);
114 node2.animatorProperties().setClipToBounds(false);
115 node2.animatorProperties().setRotationX(1.0f);
116 node2.animatorProperties().setRotationY(1.0f);
117 node2.animatorProperties().setRotation(20.0f)
    [all...]
  /external/libxml2/include/libxml/
debugXML.h 128 * @node2: a second node
137 xmlNodePtr node2);
148 xmlNodePtr node2);
153 xmlNodePtr node2);
158 xmlNodePtr node2);
163 xmlNodePtr node2);
171 xmlNodePtr node2);
176 xmlNodePtr node2);
181 xmlNodePtr node2);
188 xmlNodePtr node2);
    [all...]
  /external/libmojo/mojo/public/tools/bindings/pylib/mojom_tests/parse/
ast_unittest.py 51 node2 = ast.NodeBase()
52 self.assertEquals(node1, node2)
53 self.assertEquals(node2, node1)
56 self.assertFalse(node1 != node2)
57 self.assertFalse(node2 != node1)
63 self.assertIsNone(node2.filename)
64 self.assertIsNone(node2.lineno)
84 node2 = _TestNode(2, filename="foo.mojom", lineno=2)
99 nodelist3 = _TestNodeList([node2]) # Contains: 2.
100 self.assertEquals(nodelist3.items, [node2])
    [all...]
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/composer/
ComposerImplTest.java 36 Node node2 = yaml.compose(new StringReader(data2)); local
37 assertNotNull(node2);
38 assertFalse(node.equals(node2));
  /frameworks/support/coordinatorlayout/src/androidTest/java/androidx/coordinatorlayout/widget/
DirectedAcyclicGraphTest.java 115 final TestNode node2 = new TestNode("2"); local
118 mGraph.addNode(node2);
122 mGraph.addEdge(node2, edge);
124 // Now assert the getOutgoingEdges returns a list which has 2 elements (node1 & node2)
129 assertTrue(outgoingEdges.contains(node2));
150 final TestNode node2 = new TestNode("2"); local
153 mGraph.addNode(node2);
162 assertFalse(mGraph.contains(node2));
169 final TestNode node2 = new TestNode("B"); local
175 mGraph.addNode(node2);
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
TreePatternParser.cs 145 object node2;
146 node2 = adaptor.Create(treeNodeType, text);
147 if (label != null && node2.GetType() == typeof(TreeWizard.TreePattern)) {
148 ((TreeWizard.TreePattern)node2).label = label;
150 if (arg != null && node2.GetType() == typeof(TreeWizard.TreePattern)) {
151 ((TreeWizard.TreePattern)node2).hasTextArg = true;
153 return node2;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
TreePatternParser.cs 170 object node2;
171 node2 = adaptor.Create( treeNodeType, text );
172 if ( label != null && node2.GetType() == typeof( TreeWizard.TreePattern ) )
174 ( (TreeWizard.TreePattern)node2 ).label = label;
176 if ( arg != null && node2.GetType() == typeof( TreeWizard.TreePattern ) )
178 ( (TreeWizard.TreePattern)node2 ).hasTextArg = true;
180 return node2;
  /external/apache-xml/src/main/java/org/apache/xml/utils/
DOM2Helper.java 212 * Figure out whether node2 should be considered as being later
223 * @param node2 DOM Node to perform position comparison on .
225 * @return false if node2 comes before node1, otherwise return true.
227 * <code>(node1.documentOrderPosition &lt;= node2.documentOrderPosition)</code>.
229 public static boolean isNodeAfter(Node node1, Node node2)
234 if(node1 instanceof DOMOrder && node2 instanceof DOMOrder)
237 int index2 = ((DOMOrder) node2).getUid();
246 return DOMHelper.isNodeAfter(node1, node2);
DOMHelper.java 187 * Figure out whether node2 should be considered as being later
198 * @param node2 DOM Node to perform position comparison on .
200 * @return false if node2 comes before node1, otherwise return true.
202 * <code>(node1.documentOrderPosition &lt;= node2.documentOrderPosition)</code>.
204 public static boolean isNodeAfter(Node node1, Node node2)
206 if (node1 == node2 || isNodeTheSame(node1, node2))
213 Node parent2 = getParentOfNode(node2);
219 isNodeAfter = isNodeAfterSibling(parent1, node1, node2);
263 Node startNode1 = node1, startNode2 = node2;
    [all...]
  /packages/apps/Nfc/nci/jni/
RouteDataSet.cpp 193 xmlNodePtr node2 = node1->xmlChildrenNode; local
194 while (node2) // loop all elements in <Route
197 if (xmlStrcmp(node2->name, (const xmlChar*)"Proto") == 0)
198 importProtocolRoute(node2, mSecElemRouteDatabase);
199 else if (xmlStrcmp(node2->name, (const xmlChar*)"Tech") == 0)
200 importTechnologyRoute(node2, mSecElemRouteDatabase);
201 node2 = node2->next;
207 xmlNodePtr node2 = node1->xmlChildrenNode; local
208 while (node2) // loop all elements in <Route Type="DefaultRoutes" ..
    [all...]
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/
YamlComposeTest.java 45 ScalarNode node2 = (ScalarNode) node.getValue().get(0).getValueNode(); local
46 assertEquals("56", node2.getValue());
  /frameworks/base/cmds/statsd/tests/
LogEvent_test.cpp 35 AttributionNodeInternal node2; local
36 node2.set_uid(2000);
37 node2.set_tag("tag2");
38 nodes.push_back(node2);
105 AttributionNodeInternal node2; local
106 node2.set_uid(2000);
107 node2.set_tag("tag2");
108 nodes.push_back(node2);
  /external/ltp/testcases/kernel/controllers/cpuset/cpuset_memory_test/
cpuset_memory_testset.sh 315 read node2
326 if [ "$node2" != "1" ]; then
327 tst_resm TFAIL "allocate memory on the Node#$node2(Expect: Node#1) after changing group."
360 read node2
371 if [ "$node2" != "1" ]; then
372 tst_resm TFAIL "allocate memory on the Node#$node2(Expect: Node#1) after changing group."
449 read node2
460 if [ "$node2" != "0" ]; then
461 tst_resm TFAIL "allocate memory on the Node#$node2(Expect: Node#0) after changing mems."
636 read node2
    [all...]
  /external/ltp/testcases/kernel/syscalls/migrate_pages/
migrate_pages02.c 171 static void test_migrate_current_process(int node1, int node2, int cap_sys_nice)
182 migrate_to_node(0, node2);
183 check_addr_on_node(testp, node2);
195 migrate_to_node(0, node2);
196 check_addr_on_node(testp2, node2);
198 /* shared mem is on node2, try to migrate in child to node1 */
230 check_addr_on_node(testp2, node2);
235 static void test_migrate_other_process(int node1, int node2, int cap_sys_nice)
278 ret = check_addr_on_node(testp, node2);
295 migrate_to_node(child, node2);
    [all...]
  /external/opencv/cvaux/src/
cvlee.cpp 106 CvVoronoiNodeInt* node2; member in struct:CvVoronoiSiteInt
117 CvVoronoiNodeInt* node2; member in struct:CvVoronoiEdgeInt
    [all...]
  /external/selinux/libsemanage/src/
node_record.c 38 const semanage_node_t * node2)
41 return sepol_node_compare2(node, node2);
47 const semanage_node_t ** node2)
50 return sepol_node_compare2(*node, *node2);
node_internal.h 53 const semanage_node_t ** node2);
  /external/llvm/lib/Target/AArch64/
AArch64PBQPRegAlloc.cpp 175 PBQPRAGraph::NodeId node2 = G.getMetadata().getNodeIdForVReg(Ra); local
180 &G.getNodeMetadata(node2).getAllowedRegs();
182 PBQPRAGraph::EdgeId edge = G.findEdge(node1, node2);
203 G.addEdge(node1, node2, std::move(costs));
207 if (G.getEdgeNode1Id(edge) == node2) {
208 std::swap(node1, node2);
274 PBQPRAGraph::NodeId node2 = G.getMetadata().getNodeIdForVReg(r); local
276 &G.getNodeMetadata(node2).getAllowedRegs();
278 PBQPRAGraph::EdgeId edge = G.findEdge(node1, node2);
284 if (G.getEdgeNode1Id(edge) == node2) {
    [all...]
  /external/ltp/testcases/kernel/syscalls/move_pages/
move_pages12.c 61 static unsigned int node1, node2; variable
84 nodes[j] = node2;
190 ret = get_allowed_nodes(NH_MEMS, TEST_NODES, &node1, &node2);
209 node2, hpsz);
226 hpsz, node2, orig_hugepages_node2 + 4);
241 alloc_free_huge_on_node(node2, 4L * hpsz);
  /external/tensorflow/tensorflow/core/kernels/
immutable_constant_op_test.cc 95 auto node2 = local
97 auto result = ops::MatMul(root, node1, node2);
127 auto node2 = local
129 auto result = ops::MatMul(root, node1, node2);
167 auto node2 = local
169 auto result = ops::MatMul(root, node1, node2, ops::MatMul::TransposeB(true));
  /external/snakeyaml/src/test/java/examples/jodatime/
JodaTimeFlowStylesTest.java 55 Node node2 = dumper2.represent(bean); local
56 assertEquals(node2.toString(), node1.toString());
59 List<Event> events2 = dumper2.serialize(node2);
  /external/valgrind/include/
pub_tool_hashtable.h 75 typedef Word (*HT_Cmp_t) ( const void* node1, const void* node2 );
  /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) {}
90 NodeItr getNode2() const { return node2; }
  /external/tensorflow/tensorflow/python/debug/cli/
profile_analyzer_cli_test.py 90 node2 = step_stats_pb2.NodeExecStats(
99 device1.node_stats.extend([node1, node2])
186 node2 = step_stats_pb2.NodeExecStats(
196 device1.node_stats.extend([node1, node2])
238 node2 = step_stats_pb2.NodeExecStats(
248 device1.node_stats.extend([node1, node2])
292 node2 = step_stats_pb2.NodeExecStats(
302 device1.node_stats.extend([node1, node2])
  /external/selinux/libsemanage/include/semanage/
node_record.h 26 const semanage_node_t * node2);

Completed in 1392 milliseconds

1 2 3 4 5 6 7 8 91011