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

1 2 3 4 5 6 7

  /external/valgrind/helgrind/tests/
locked_vs_unlocked1.c 27 pthread_t child1, child2; local
29 if (pthread_create(&child1, NULL, child_fn, (void*)(long)(sw ? 0 : 1))) {
39 if (pthread_join(child1, NULL)) {
bar_bad.c 12 void* child1 ( void* arg ) function
53 pthread_create(&thr1, NULL, child1, (void*)bar3);
65 pthread_create(&thr2, NULL, child1, (void*)bar4);
locked_vs_unlocked3.c 45 pthread_t child1, child2; local
54 r= pthread_create(&child1, NULL, child_fn1, NULL); assert(!r);
56 r= pthread_join(child1, NULL); assert(!r);
tc22_exit_w_lock.c 37 pthread_t child1, child2; local
42 r= pthread_create(&child1, NULL, child_fn1, NULL); assert(!r);
43 r= pthread_join(child1, NULL); assert(!r);
locked_vs_unlocked2.c 53 pthread_t child1, child2; local
62 r= pthread_create(&child1, NULL, child_fn1, NULL); assert(!r);
64 r= pthread_join(child1, NULL); assert(!r);
  /external/testng/src/test/java/test/triangle/
Child1.java 10 public class Child1 extends Base {
12 public void child1() { method in class:Child1
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/collision/broadphase/
DynamicTree.java 100 assert (node.child1 == null);
111 assert (node.child1 == null);
174 if (node.child1 == null) {
185 nodeStack[nodeStackIndex++] = node.child1;
268 if (node.child1 == null) {
301 nodeStack[nodeStackIndex++] = node.child1;
315 if (node.child1 == null) {
318 int height1 = computeHeight(node.child1);
361 assert (node.child1 == null == false);
363 DynamicTreeNode child1 = node.child1 local
440 DynamicTreeNode child1 = m_nodes[index1]; local
520 DynamicTreeNode child1 = node.child1; local
605 DynamicTreeNode child1 = index.child1; local
649 DynamicTreeNode child1 = index.child1; local
801 DynamicTreeNode child1 = node.child1; local
826 DynamicTreeNode child1 = node.child1; local
    [all...]
DynamicTreeNode.java 38 protected DynamicTreeNode child1; field in class:DynamicTreeNode
DynamicTreeFlatNodes.java 181 int child1 = m_child1[node]; local
182 if (child1 == NULL_NODE) {
192 nodeStack[nodeStackIndex++] = child1;
275 int child1 = m_child1[node]; local
276 if (child1 == NULL_NODE) {
304 nodeStack[nodeStackIndex++] = child1;
363 int child1 = m_child1[i]; local
365 int balance = MathUtils.abs(m_height[child2] - m_height[child1]);
439 // DynamicTreeNode child1 = m_nodes[index1];
443 // parent.child1 = child1
504 int child1 = m_child1[node]; local
591 int child1 = m_child1[index]; local
637 int child1 = m_child1[index]; local
788 int child1 = m_child1[node]; local
813 int child1 = m_child1[node]; local
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_transformer.py 21 child1 = a.getChildNodes()[0]
22 self.assertIsInstance(child1, ast.Stmt)
23 child2 = child1.getChildNodes()[0]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_transformer.py 21 child1 = a.getChildNodes()[0]
22 self.assertIsInstance(child1, ast.Stmt)
23 child2 = child1.getChildNodes()[0]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_transformer.py 21 child1 = a.getChildNodes()[0]
22 self.assertIsInstance(child1, ast.Stmt)
23 child2 = child1.getChildNodes()[0]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_transformer.py 21 child1 = a.getChildNodes()[0]
22 self.assertIsInstance(child1, ast.Stmt)
23 child2 = child1.getChildNodes()[0]
  /frameworks/support/percent/tests/java/android/support/percent/
PercentDynamicLayoutTest.java 123 final View child1 = percentFrameLayout.findViewById(R.id.child1);
127 0.5f * availableWidth, child1.getWidth());
129 availableHeight, child1.getHeight());
153 final View child1 = percentFrameLayout.findViewById(R.id.child1);
157 availableWidth, child1.getWidth());
159 0.5f * availableHeight, child1.getHeight());
183 final View child1 = percentRelativeLayout.findViewById(R.id.child1);
    [all...]
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
ViewGroupTest.java 33 private View child1; field in class:ViewGroupTest
47 child1 = new View(context);
53 root.addView(child1);
93 assertThat(root.getChildAt(0), sameInstance(child1));
102 root.addView(child1);
105 assertThat(root.getChildAt(0), sameInstance(child1));
113 child1.setTag("tag1");
116 root.addView(child1);
119 assertThat(root.findViewWithTag("tag1"), sameInstance(child1));
127 child1.setTag("tag1")
    [all...]
  /external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/Collision/
b2DynamicTree.cpp 86 m_nodes[nodeId].child1 = b2_nullNode;
195 int32 child1 = m_nodes[index].child1; local
210 // Cost of descending into child1
212 if (m_nodes[child1].IsLeaf())
215 aabb.Combine(leafAABB, m_nodes[child1].aabb);
221 aabb.Combine(leafAABB, m_nodes[child1].aabb);
222 float32 oldArea = m_nodes[child1].aabb.GetPerimeter();
253 index = child1;
274 if (m_nodes[oldParent].child1 == sibling
304 int32 child1 = m_nodes[index].child1; local
359 int32 child1 = m_nodes[index].child1; local
596 int32 child1 = node->child1; local
626 int32 child1 = node->child1; local
688 int32 child1 = node->child1; local
748 b2TreeNode* child1 = m_nodes + index1; local
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/prefs/
FilePreferencesImplTest.java 75 Preferences child1 = uroot.node("child1"); local
77 Preferences grandchild = child1.node("grand");
83 childNames = child1.childrenNames();
89 child1.removeNode();
97 child1 = sroot.node("child1");
101 Preferences grandchild2 = child1.node("grand");
104 childNames = child1.childrenNames();
110 child1.removeNode()
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/prefs/
OldFilePreferencesImplTest.java 49 Preferences child1 = sroot.node("child1"); local
51 Preferences grandchild = child1.node("grand");
54 assertContains(childNames, "child1");
58 childNames = child1.childrenNames();
64 child1.removeNode();
66 assertNotContains(childNames, "child1");
72 assertNotContains(childNames, "child1");
  /frameworks/opt/setupwizard/library/test/src/com/android/setupwizardlib/test/
ItemInflaterTest.java 44 Item child1 = (Item) itemGroup.getItemAt(1); local
46 assertEquals("ID of second child should be test_item_2", R.id.test_item_2, child1.getId());
48 child1.getSummary());
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
elementgetelementsbytagnamens04.java 77 Element child1; local
86 child1 = doc.createElementNS("http://www.w3.org/DOM/Level1", "dom:child");
89 appendedChild = element.appendChild(child1);
  /libcore/luni/src/test/java/tests/org/w3c/dom/
ElementGetElementsByTagNameNS.java 63 Element child1; local
72 child1 = doc.createElementNS("http://www.w3.org/DOM/Level1",
77 element.appendChild(child1);
  /external/libweave/src/notification/
xmpp_stream_parser_unittest.cc 139 const XmlNode* child1 = stanza1->children()[0].get(); local
140 EXPECT_EQ("starttls", child1->name());
141 ASSERT_EQ(1u, child1->children().size());
142 EXPECT_EQ("required", child1->children()[0]->name());
175 child1 = child->children()[0].get();
176 EXPECT_EQ("push:recipient", child1->name());
177 ASSERT_EQ(1u, child1->attributes().size());
178 EXPECT_TRUE(child1->GetAttribute("to", &value));
183 EXPECT_TRUE(child1->children().empty());
  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
GridLayoutManagerWrapContentWithAspectRatioTest.java 182 View child1 = mRecyclerView.getChildAt(1); local
183 assertThat(getSize(child1, mTestOrientation), is(30));
186 assertThat(mHelper.getDecoratedStart(child1), is(15));
189 assertThat(mHelper.getDecoratedEnd(child1), is(45));
193 assertThat(mHelper.getDecoratedMeasurementInOther(child1),
260 View child1 = mRecyclerView.getChildAt(1); local
261 assertThat(getSize(child1, mTestOrientation), is(15));
264 assertThat(mHelper.getDecoratedStart(child1), is(15));
267 assertThat(mHelper.getDecoratedEnd(child1), is(30));
271 assertThat(mHelper.getDecoratedMeasurementInOther(child1),
332 View child1 = mRecyclerView.getChildAt(1); local
    [all...]
GridLayoutManagerRtlTest.java 122 View child1 = mGlm.findViewByPosition(secondChildPos); local
126 child1);
129 helper.getDecoratedStart(child0) >= helper.getDecoratedEnd(child1));
134 helper.getDecoratedStart(child1) >= helper.getDecoratedEnd(child0));
  /external/opencv3/modules/flann/include/opencv2/flann/
kdtree_index.h 234 Node* child1, * child2; member in struct:cvflann::KDTreeIndex::Node
245 if (tree->child1!=NULL) {
246 save_tree(stream, tree->child1);
258 if (tree->child1!=NULL) {
259 load_tree(stream, tree->child1);
282 node->child1 = node->child2 = NULL; /* Mark as leaf node. */
293 node->child1 = divideTree(ind, idx);
476 if ((node->child1 == NULL)&&(node->child2 == NULL)) {
495 NodePtr bestChild = (diff < 0) ? node->child1 : node->child2;
496 NodePtr otherChild = (diff < 0) ? node->child2 : node->child1;
    [all...]

Completed in 3075 milliseconds

1 2 3 4 5 6 7