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

1 2 3

  /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/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/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/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...]
  /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...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_transformer.py 23 child2 = child1.getChildNodes()[0]
24 self.assertIsInstance(child2, ast.Assign)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_transformer.py 23 child2 = child1.getChildNodes()[0]
24 self.assertIsInstance(child2, ast.Assign)
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
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();
elementgetelementsbytagnamens04.java 78 Element child2; local
87 child2 = doc.createElementNS(nullNS, "child");
90 appendedChild = element.appendChild(child2);
  /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/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();
  /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/tests/org/w3c/dom/
ElementGetElementsByTagNameNS.java 64 Element child2; local
74 child2 = doc.createElementNS(nullNS, "child");
78 element.appendChild(child2);
  /external/chromium_org/tools/gyp/tools/
pretty_vcproj.py 222 def SeekToNode(node1, child2):
224 if child2.nodeType == Node.TEXT_NODE:
228 current_name = child2.getAttribute("Name")
235 if sub_node.nodeName == child2.nodeName:
271 for child2 in node2.childNodes:
272 child1 = SeekToNode(node1, child2)
274 MergeProperties(child1, child2)
276 node1.appendChild(child2.cloneNode(True))
  /sdk/emulator/qtools/tests/gtrace/
test.c 7 int child2();
117 a += child2();
163 int child2() function
  /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/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...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/test/test_ttk/
test_widgets.py 369 child2 = ttk.Label()
374 self.paned.insert('end', child2)
376 self.assertEqual(self.paned.panes(), (str(child), str(child2)))
378 self.paned.insert(0, child2)
379 self.assertEqual(self.paned.panes(), (str(child2), str(child)))
383 (str(child2), str(child), str(child3)))
390 # moving child3 to child2 position should result in child2 ending up
393 self.paned.insert(child2, child3)
395 (str(child3), str(child2), str(child))
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/test/test_ttk/
test_widgets.py 369 child2 = ttk.Label()
374 self.paned.insert('end', child2)
376 self.assertEqual(self.paned.panes(), (str(child), str(child2)))
378 self.paned.insert(0, child2)
379 self.assertEqual(self.paned.panes(), (str(child2), str(child)))
383 (str(child2), str(child), str(child3)))
390 # moving child3 to child2 position should result in child2 ending up
393 self.paned.insert(child2, child3)
395 (str(child3), str(child2), str(child))
    [all...]
  /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);

Completed in 1037 milliseconds

1 2 3