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

1 2

  /external/valgrind/main/helgrind/tests/
locked_vs_unlocked1.c 27 pthread_t child1, child2; local
34 if (pthread_create(&child2, NULL, child_fn, (void*)(long)(sw ? 1 : 0))) {
44 if (pthread_join(child2, NULL)) {
locked_vs_unlocked3.c 45 pthread_t child1, child2; local
53 r= pthread_create(&child2, NULL, child_fn2, NULL); assert(!r);
57 r= pthread_join(child2, NULL); assert(!r);
locked_vs_unlocked2.c 53 pthread_t child1, child2; local
61 r= pthread_create(&child2, NULL, child_fn2, NULL); assert(!r);
65 r= pthread_join(child2, NULL); assert(!r);
tc22_exit_w_lock.c 37 pthread_t child1, child2; local
39 r= pthread_create(&child2, NULL, child_fn2, NULL); assert(!r);
  /external/chromium_org/ui/views/controls/tabbed_pane/
tabbed_pane_unittest.cc 40 View* child2 = new FixedSizeView(gfx::Size(5, 5)); local
41 tabbed_pane->AddTab(ASCIIToUTF16("tab2"), child2);
65 EXPECT_EQ(bounds, child2->bounds());
  /libcore/luni/src/test/java/libcore/java/util/prefs/
OldFilePreferencesImplTest.java 29 Preferences child2 = sroot.node("child2"); local
34 assertContains(childNames, "child2");
40 childNames = child2.childrenNames();
46 assertContains(childNames, "child2");
49 child2.removeNode();
52 assertNotContains(childNames, "child2");
  /external/chromium/chrome/common/extensions/docs/examples/api/contextMenus/basic/
sample.js 28 var child2 = chrome.contextMenus.create( variable
30 console.log("parent:" + parent + " child1:" + child1 + " child2:" + child2);
  /external/chromium_org/chrome/common/extensions/docs/examples/api/contextMenus/basic/
sample.js 28 var child2 = chrome.contextMenus.create( variable
30 console.log("parent:" + parent + " child1:" + child1 + " child2:" + child2);
  /sdk/emulator/qtools/tests/gtrace/
test.c 7 int child2();
117 a += child2();
163 int child2() function
  /external/apache-harmony/prefs/src/test/java/org/apache/harmony/prefs/tests/java/util/prefs/
FilePreferencesImplTest.java 83 Preferences child2 = uroot.node("\u4e2d child2"); local
93 childNames = child2.childrenNames();
100 child2.removeNode();
105 child2 = sroot.node("child2");
115 childNames = child2.childrenNames();
124 child2.removeNode();
  /cts/tests/tests/widget/src/android/widget/cts/
LayoutDirectionTest.java 112 ViewGroup child2 = (ViewGroup) getActivity().findViewById(child2Id); local
113 assertEquals(child2ResDir, child2.getLayoutDirection());
TableLayoutTest.java 386 View child2 = new RelativeLayout(mContext); local
387 tableLayout.addView(child2);
389 assertSame(child2, tableLayout.getChildAt(1));
398 assertSame(child2, tableLayout.getChildAt(1));
422 View child2 = new RelativeLayout(mContext); local
423 tableLayout.addView(child2, 0);
424 assertSame(child2, tableLayout.getChildAt(0));
433 assertSame(child2, tableLayout.getChildAt(0));
466 View child2 = new TableRow(mContext); local
467 assertNull(child2.getLayoutParams())
504 View child2 = new TableRow(mContext); local
    [all...]
  /external/chromium/chrome/browser/ui/gtk/
gtk_expanded_container_unittest.cc 54 GtkWidget* child2 = gtk_fixed_new(); local
58 gtk_container_add(GTK_CONTAINER(expanded_), child2); local
59 ASSERT_TRUE(FindChild(child2));
64 ASSERT_TRUE(FindChild(child2));
66 gtk_container_remove(GTK_CONTAINER(expanded_), child2); local
67 ASSERT_FALSE(FindChild(child2));
72 GtkWidget* child2 = gtk_fixed_new(); local
75 child2, 10, 20); local
86 EXPECT_EQ(10, child2->allocation.x);
87 EXPECT_EQ(20, child2->allocation.y)
    [all...]
  /external/chromium_org/ui/base/models/
tree_node_model_unittest.cc 67 // +-- child2
81 TestNode* child2 = new TestNode; local
82 model.Add(root, child2, 1);
88 EXPECT_EQ(0, child2->child_count());
121 // +-- child2
127 TestNode child2; local
131 root.Add(&child2, 1);
160 // +-- child2
167 TestNode* child2 = new TestNode; local
168 root.Add(child2, 1)
198 TestNode* child2 = new TestNode; local
249 TestNode* child2 = new TestNode; local
299 TestNode* child2 = new TestNode; local
    [all...]
  /external/chromium_org/ui/base/gtk/
gtk_expanded_container_unittest.cc 71 GtkWidget* child2 = gtk_fixed_new(); local
75 gtk_container_add(GTK_CONTAINER(expanded_), child2); local
76 ASSERT_TRUE(FindChild(child2));
81 ASSERT_TRUE(FindChild(child2));
83 gtk_container_remove(GTK_CONTAINER(expanded_), child2); local
84 ASSERT_FALSE(FindChild(child2));
89 GtkWidget* child2 = gtk_fixed_new(); local
92 child2, 10, 20); local
100 EXPECT_ALLOCATION_EQ(child2, 10, 20, 50, 100);
108 EXPECT_ALLOCATION_PARAM_EQ(child2, x, 20)
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
elementgetelementsbytagnamens04.java 78 Element child2; local
87 child2 = doc.createElementNS(nullNS, "child");
90 appendedChild = element.appendChild(child2);
removeNamedItemNS03.java 85 Node child2; local
101 child2 = n2List.item(0);
102 assertNotNull("notnull", child2);
103 attributes = child2.getAttributes();
setNamedItemNS04.java 85 Node child2; local
102 child2 = n2List.item(0);
103 assertNotNull("notnull", child2);
104 attributes = child2.getAttributes();
  /libcore/luni/src/test/java/tests/org/w3c/dom/
ElementGetElementsByTagNameNS.java 64 Element child2; local
74 child2 = doc.createElementNS(nullNS, "child");
78 element.appendChild(child2);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SelectionManagerTest.java 54 ViewInfo child2 = new ViewInfo("Button2", child2Node, 0, 20, 70, 25); local
55 root.setChildren(Arrays.asList(child1, child2));
105 ViewInfo child2 = new ViewInfo("Button2", child2Node, 0, 20, 70, 25); local
106 root.setChildren(Arrays.asList(child1, child2));
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
ViewGroupTest.java 34 private View child2; field in class:ViewGroupTest
48 child2 = new View(context);
54 root.addView(child2);
96 assertThat(child2.getParent(), nullValue());
103 root.addView(child2);
107 assertThat(root.getChildAt(2), sameInstance(child2));
114 child2.setTag("tag2");
117 root.addView(child2);
120 assertThat(root.findViewWithTag("tag2"), sameInstance(child2));
128 child2.setTag("tag2")
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
TreeWizard.java 357 TreePattern child2 = (TreePattern)tpattern.getChild(i); local
358 if ( !_parse(child1, child2, labels) ) {
368 * (root child1 ... child2).
425 Object child2 = adaptor.getChild(t2, i); local
426 if ( !_equals(child1, child2, adaptor) ) {
  /external/chromium_org/cc/layers/
scrollbar_layer_unittest.cc 38 scoped_refptr<Layer> child2 = local
42 layer_tree_root->InsertChild(child2, reverse_order ? 0 : 1);
  /external/chromium_org/cc/trees/
damage_tracker_unittest.cc 110 scoped_ptr<LayerImpl> child2 = local
137 child2->SetPosition(gfx::PointF(11.f, 11.f));
138 child2->SetAnchorPoint(gfx::PointF());
139 child2->SetBounds(gfx::Size(18, 18));
140 child2->SetContentBounds(gfx::Size(18, 18));
141 child2->SetDrawsContent(true);
158 root->AddChild(child2.Pass());
211 LayerImpl* child2 = root->children()[1]; local
218 EXPECT_FALSE(child2->render_surface());
479 LayerImpl* child2 = root->children()[1] local
617 scoped_ptr<LayerImpl> child2 = local
666 scoped_ptr<LayerImpl> child2 = local
700 scoped_ptr<LayerImpl> child2 = local
709 LayerImpl* child2 = root->children()[1]; local
728 LayerImpl* child2 = root->children()[1]; local
    [all...]
tree_synchronizer_unittest.cc 221 // Set up the tree and sync once. child2 needs to be synced here, too, even
225 scoped_refptr<Layer> child2 = MockLayer::Create(&layer_impl_destruction_list); local
227 layer_tree_root->AddChild(child2);
246 child2->RemoveFromParent();
247 layer_tree_root->AddChild(child2);

Completed in 477 milliseconds

1 2