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

1 2 3 4 5

  /external/chromium_org/chrome/browser/ui/cocoa/
nsview_additions_unittest.mm 43 base::scoped_nsobject<NSView> child1(
48 [parent addSubview:child1];
50 EXPECT_TRUE([child1 cr_isBelowView:child2]);
51 EXPECT_FALSE([child1 cr_isAboveView:child2]);
52 EXPECT_FALSE([child2 cr_isBelowView:child1]);
53 EXPECT_TRUE([child2 cr_isAboveView:child1]);
55 [child1 removeFromSuperview];
58 [parent addSubview:child1];
59 EXPECT_FALSE([child1 cr_isBelowView:child2]);
60 EXPECT_TRUE([child1 cr_isAboveView:child2])
    [all...]
  /external/chromium_org/ui/base/models/
tree_node_model_unittest.cc 64 // +-- child1
73 TestNode* child1 = new TestNode; local
74 model.Add(root, child1, 0);
79 child1->Add(new TestNode, i);
87 EXPECT_EQ(2, child1->child_count());
98 TestNode* child1 = new TestNode; local
99 root->Add(child1, 0);
103 // Now remove |child1| from |root| and release the memory.
104 delete model.Remove(root, child1);
116 // +-- child1
126 TestNode child1; local
164 TestNode* child1 = new TestNode; local
197 TestNode* child1 = new TestNode; local
248 TestNode* child1 = new TestNode; local
294 TestNode* child1 = new TestNode; local
316 TestNode* child1 = new TestNode; local
    [all...]
  /external/apache-harmony/prefs/src/test/java/org/apache/harmony/prefs/tests/java/util/prefs/
FilePreferencesImplTest.java 82 Preferences child1 = uroot.node("child1"); local
84 Preferences grandchild = child1.node("grand");
90 childNames = child1.childrenNames();
96 child1.removeNode();
104 child1 = sroot.node("child1");
106 grandchild = child1.node("grand");
112 childNames = child1.childrenNames();
118 child1.removeNode()
    [all...]
  /external/chromium/chrome/browser/ui/gtk/
gtk_expanded_container_unittest.cc 53 GtkWidget* child1 = gtk_fixed_new(); local
55 gtk_container_add(GTK_CONTAINER(expanded_), child1); local
56 ASSERT_TRUE(FindChild(child1));
60 ASSERT_TRUE(FindChild(child1));
62 gtk_container_remove(GTK_CONTAINER(expanded_), child1); local
63 ASSERT_FALSE(FindChild(child1));
71 GtkWidget* child1 = gtk_fixed_new(); local
73 gtk_container_add(GTK_CONTAINER(expanded_), child1); local
81 EXPECT_EQ(0, child1->allocation.x);
82 EXPECT_EQ(0, child1->allocation.y)
    [all...]
  /external/robolectric/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...]
  /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]
  /libcore/luni/src/test/java/libcore/java/util/prefs/
OldFilePreferencesImplTest.java 28 Preferences child1 = sroot.node("child1"); local
30 Preferences grandchild = child1.node("grand");
33 assertContains(childNames, "child1");
37 childNames = child1.childrenNames();
43 child1.removeNode();
45 assertNotContains(childNames, "child1");
51 assertNotContains(childNames, "child1");
  /external/chromium_org/content/browser/accessibility/
browser_accessibility_mac_unittest.mm 76 AccessibilityNodeData child1;
77 child1.id = 1001;
78 child1.name = ASCIIToUTF16("Child1");
79 child1.location.set_width(250);
80 child1.location.set_height(100);
81 child1.role = AccessibilityNodeData::ROLE_BUTTON;
93 manager_->UpdateNodesForTesting(child1, child2);
107 EXPECT_NSEQ(@"Child1",
115 EXPECT_NSEQ(@"Child1",
    [all...]
  /external/chromium_org/ui/base/gtk/
gtk_expanded_container_unittest.cc 70 GtkWidget* child1 = gtk_fixed_new(); local
72 gtk_container_add(GTK_CONTAINER(expanded_), child1); local
73 ASSERT_TRUE(FindChild(child1));
77 ASSERT_TRUE(FindChild(child1));
79 gtk_container_remove(GTK_CONTAINER(expanded_), child1); local
80 ASSERT_FALSE(FindChild(child1));
88 GtkWidget* child1 = gtk_fixed_new(); local
90 gtk_container_add(GTK_CONTAINER(expanded_), child1); local
98 EXPECT_ALLOCATION_EQ(child1, 0, 0, 50, 100);
106 EXPECT_ALLOCATION_PARAM_EQ(child1, x, 10)
    [all...]
  /external/chromium/chrome/browser/accessibility/
browser_accessibility_mac_unittest.mm 55 WebAccessibility child1;
56 child1.name = ASCIIToUTF16("Child1");
57 child1.location.set_width(250);
58 child1.location.set_height(100);
59 child1.role = WebAccessibility::ROLE_BUTTON;
67 root.children.push_back(child1);
87 EXPECT_NSEQ(@"Child1",
95 EXPECT_NSEQ(@"Child1",
  /external/valgrind/main/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)) {
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);
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_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/chromium_org/cc/trees/
damage_tracker_unittest.cc 103 // child1. Additionally, the root has a second child layer, and child1 has
108 scoped_ptr<LayerImpl> child1 = local
125 child1->SetPosition(gfx::PointF(100.f, 100.f));
126 child1->SetAnchorPoint(gfx::PointF());
127 child1->SetBounds(gfx::Size(30, 30));
128 child1->SetContentBounds(gfx::Size(30, 30));
133 child1->SetOpacity(0.5f);
134 child1->SetDrawsContent(false);
135 child1->SetForceRenderSurface(true)
210 LayerImpl* child1 = root->children()[0]; local
478 LayerImpl* child1 = root->children()[0]; local
611 LayerImpl* child1 = root->children()[0]; local
694 LayerImpl* child1 = root->children()[0]; local
727 LayerImpl* child1 = root->children()[0]; local
772 LayerImpl* child1 = root->children()[0]; local
808 LayerImpl* child1 = root->children()[0]; local
832 LayerImpl* child1 = root->children()[0]; local
883 LayerImpl* child1 = root->children()[0]; local
913 LayerImpl* child1 = root->children()[0]; local
932 LayerImpl* child1 = root->children()[0]; local
1127 LayerImpl* child1 = root->children()[0]; local
1199 LayerImpl* child1 = root->children()[0]; local
    [all...]
  /cts/tests/tests/view/src/android/view/animation/cts/
GridLayoutAnimationControllerTest.java 115 * @param child1
120 private void assertChildrenDelay(Animation child1, Animation child2, Animation child3) {
121 long startTime = child1.getStartTime();
122 long offsetTime1 = child1.getStartOffset();
133 // child1 has started animation, child2 and child3 haven't started
134 child1.getTransformation(startTime + 500, transformation1);
141 // child1 has finished, child2 and child3 haven't started
142 child1.getTransformation(startTime + 1200, transformation1);
149 // child1 has finished, child2 has started animation, child3 hasn't started.
150 child1.getTransformation(startTime + 2000, transformation1)
    [all...]
  /packages/apps/Email/tests/src/com/android/email/activity/
FindParentMailboxTaskTest.java 43 * |-Child1
105 * - Child1
125 * - Child1
140 * - Child1
159 * - [Child1]
238 * - Child1
248 * - 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/apache-harmony/support/src/test/java/tests/support/
Support_TestResource_en.java 26 { "child1", "enChildValue1" }, };
Support_TestResource_en_US.java 25 { "parent4", "enUSValue4" }, { "child1", "enUSChildValue1" },
Support_TestResource_fr.java 26 { "child1", "frChildValue1" }, };
Support_TestResource_fr_FR.java 25 { "parent4", "frFRValue4" }, { "child1", "frFRChildValue1" },
Support_TestResource_fr_FR_VAR.java 25 { "child1", "frFRVARChildValue1" },

Completed in 1538 milliseconds

1 2 3 4 5