HomeSort by relevance Sort by last modified time
    Searched refs:child1 (Results 1 - 25 of 151) 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
  /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...]
  /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");
OldNodeChangeEventTest.java 82 Preferences child1 = pref.node("mock1"); local
87 child1.removeNode();
130 Preferences child1 = pref.node("mock1"); local
135 child1.removeNode();
  /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...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SelectionManagerTest.java 51 ViewInfo child1 = new ViewInfo("Button1", child1Node, 0, 0, 50, 20); local
55 root.setChildren(Arrays.asList(child1, child2));
102 ViewInfo child1 = new ViewInfo("Button1", child1Node, 0, 0, 50, 20); local
106 root.setChildren(Arrays.asList(child1, child2));
  /external/dagger2/compiler/src/it/functional-tests/src/test/java/test/builder/
BuilderTest.java 136 TestChildComponentWithBuilderInterface child1 = builder1.build(); local
137 assertThat(child1.s()).isEqualTo("sam");
138 assertThat(child1.i()).isEqualTo(1);
139 assertThat(child1.d()).isWithin(0).of(4.2d);
140 assertThat(child1.f()).isEqualTo(5.5f);
141 assertThat(child1.l()).isEqualTo(6L);
142 assertThat(child1.b()).isEqualTo((byte)7);
  /cts/tests/tests/widget/src/android/widget/cts/
TableLayoutTest.java 378 View child1 = new TextView(mContext); local
379 tableLayout.addView(child1);
380 assertSame(child1, tableLayout.getChildAt(0));
387 assertSame(child1, tableLayout.getChildAt(0));
396 assertSame(child1, tableLayout.getChildAt(0));
414 View child1 = new TextView(mContext); local
415 tableLayout.addView(child1, 0);
416 assertSame(child1, tableLayout.getChildAt(0));
424 assertSame(child1, tableLayout.getChildAt(1));
433 assertSame(child1, tableLayout.getChildAt(1))
455 View child1 = new TextView(mContext); local
493 View child1 = new TextView(mContext); local
    [all...]

Completed in 595 milliseconds

1 2 3 4 5 6 7