HomeSort by relevance Sort by last modified time
    Searched defs:child2 (Results 1 - 25 of 65) 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/views/controls/tabbed_pane/
tabbed_pane_unittest.cc 42 View* child2 = new FixedSizeView(gfx::Size(5, 5)); local
43 tabbed_pane->AddTab(ASCIIToUTF16("tab2"), child2);
67 EXPECT_EQ(bounds, child2->bounds());
  /libcore/luni/src/test/java/libcore/java/util/prefs/
OldFilePreferencesImplTest.java 50 Preferences child2 = sroot.node("child2"); local
55 assertContains(childNames, "child2");
61 childNames = child2.childrenNames();
67 assertContains(childNames, "child2");
70 child2.removeNode();
73 assertNotContains(childNames, "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);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/prefs/
FilePreferencesImplTest.java 76 Preferences child2 = uroot.node("\u4e2d child2"); local
86 childNames = child2.childrenNames();
93 child2.removeNode();
98 child2 = sroot.node("child2");
107 childNames = child2.childrenNames();
116 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...]
TabHostTest.java 296 TextView child2 = (TextView) tabHost.getTabContentView().getChildAt(2); local
298 assertEquals(TabHostCtsActivity.INITIAL_VIEW_TEXT, child2.getText().toString());
312 child2 = (TextView) tabHost.getTabContentView().getChildAt(2);
314 assertEquals(TabHostCtsActivity.INITIAL_VIEW_TEXT, child2.getText().toString());
  /external/chromium_org/ui/base/models/
tree_node_model_unittest.cc 69 // +-- child2
83 TestNode* child2 = new TestNode; local
84 model.Add(root, child2, 1);
90 EXPECT_EQ(0, child2->child_count());
123 // +-- child2
129 TestNode child2; local
133 root.Add(&child2, 1);
162 // +-- child2
169 TestNode* child2 = new TestNode; local
170 root.Add(child2, 1)
200 TestNode* child2 = new TestNode; local
251 TestNode* child2 = new TestNode; local
301 TestNode* child2 = new TestNode; local
    [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);
  /external/linux-tools-perf/perf-3.12.0/include/linux/
rbtree_augmented.h 159 struct rb_node *successor = child, *child2; local
172 child2 = successor->rb_right;
194 parent->rb_left = child2 = successor->rb_right;
207 if (child2) {
209 rb_set_parent_color(child2, parent, RB_BLACK);
  /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...]
  /cts/tests/tests/view/src/android/view/animation/cts/
AnimatorInflaterTest.java 100 final ObjectAnimator child2 = (ObjectAnimator) set.getChildAnimations().get(1); local
105 for (ObjectAnimator animator : new ObjectAnimator[]{child1, child2}) {
  /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/trees/
damage_tracker_unittest.cc 110 scoped_ptr<LayerImpl> child2 = local
135 child2->SetPosition(gfx::PointF(11.f, 11.f));
136 child2->SetBounds(gfx::Size(18, 18));
137 child2->SetContentBounds(gfx::Size(18, 18));
138 child2->SetDrawsContent(true);
153 root->AddChild(child2.Pass());
207 LayerImpl* child2 = root->children()[1]; local
214 EXPECT_FALSE(child2->render_surface());
572 LayerImpl* child2 = root->children()[1]; local
597 // the root and on child2. Damage on the root should be: position o
704 scoped_ptr<LayerImpl> child2 = local
753 scoped_ptr<LayerImpl> child2 = local
786 scoped_ptr<LayerImpl> child2 = local
794 LayerImpl* child2 = root->children()[1]; local
813 LayerImpl* child2 = root->children()[1]; local
    [all...]
layer_tree_impl_unittest.cc 847 // child 1 and child2 are initialized to overlap between x=50 and x=60
855 scoped_ptr<LayerImpl> child2 = local
902 LayerImpl* child2 = root->children()[1]; local
996 scoped_ptr<LayerImpl> child2 = local
1050 LayerImpl* child2 = root->children()[1]; local
1286 scoped_ptr<LayerImpl> child2 = local
1336 LayerImpl* child2 = root->children()[1]; local
    [all...]
tree_synchronizer_unittest.cc 281 // Set up the tree and sync once. child2 needs to be synced here, too, even
285 scoped_refptr<Layer> child2 = MockLayer::Create(&layer_impl_destruction_list); local
287 layer_tree_root->AddChild(child2);
306 child2->RemoveFromParent();
307 layer_tree_root->AddChild(child2);
  /libcore/jsr166-tests/src/test/java/jsr166/
PhaserTest.java 192 Phaser child2 = new Phaser(root, 0); local
193 assertEquals(0, child2.register());
196 assertState(child2, 0, 1, 1);
197 assertEquals(0, child2.arriveAndDeregister());
200 assertState(child2, 0, 0, 0);
201 assertEquals(0, child2.register());
202 assertEquals(0, child2.arriveAndDeregister());
205 assertState(child2, 0, 0, 0);
209 assertTerminated(child2, 1);

Completed in 2509 milliseconds

1 2 3