HomeSort by relevance Sort by last modified time
    Searched refs:child3 (Results 1 - 18 of 18) sorted by null

  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
ViewGroupTest.java 35 private ViewGroup child3; field in class:ViewGroupTest
49 child3 = new FrameLayout(context);
55 root.addView(child3);
57 child3.addView(child3a);
58 child3.addView(child3b);
94 assertThat(root.getChildAt(1), sameInstance((View) child3));
104 root.addView(child3, 1);
106 assertThat(root.getChildAt(1), sameInstance((View) child3));
115 child3.setTag("tag3");
118 root.addView(child3, 1)
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
elementgetelementsbytagnamens04.java 79 Element child3; local
88 child3 = doc.createElementNS("http://www.w3.org/DOM/Level2", "dom:child");
91 appendedChild = element.appendChild(child3);
  /libcore/luni/src/test/java/tests/org/w3c/dom/
ElementGetElementsByTagNameNS.java 65 Element child3; local
75 child3 = doc.createElementNS("http://www.w3.org/DOM/Level2",
79 element.appendChild(child3);
  /cts/tests/tests/view/src/android/view/animation/cts/
GridLayoutAnimationControllerTest.java 117 * @param child3
120 private void assertChildrenDelay(Animation child1, Animation child2, Animation child3) {
124 long offsetTime3 = child3.getStartOffset();
133 // child1 has started animation, child2 and child3 haven't started
136 child3.getTransformation(startTime + 500, transformation3);
141 // child1 has finished, child2 and child3 haven't started
144 child3.getTransformation(startTime + 1200, transformation3);
149 // child1 has finished, child2 has started animation, child3 hasn't started.
152 child3.getTransformation(startTime + 2000, transformation3);
157 // child1 and child2 have finished, child3 hasn't starte
    [all...]
LayoutAnimationControllerTest.java 96 // child1 has started animation, child2 and child3 haven't started
104 // child2 has started animation, child1 has finished and child3 hasn't started
112 // child3 has started animation, child1, child2 have finished
137 // child3 has started animation, child1 and child2 haven't started
145 // child2 has started animation, child3 has finished and child1 hasn't started
153 // child1 has started animation, child2 and child3 has finished
188 // child1 has started animation, child2 and child3 haven't started
196 // child1 has finished, child2 and child3 haven't started
204 // child1 has finished, child2 has started animation, child3 hasn't started.
212 // child1 and child2 have finished, child3 hasn't starte
    [all...]
  /external/chromium_org/ui/base/models/
tree_node_model_unittest.cc 124 // +-- child3
130 TestNode child3; local
134 root.Add(&child3, 2);
235 // +-- child3
252 TestNode* child3 = new TestNode; local
256 child2->Add(child3, 0);
  /external/lldb/test/lang/c/array_types/
TestArrayTypes.py 164 child3 = variable.GetChildAtIndex(3)
165 self.DebugSBValue(child3)
166 self.assertTrue(child3.GetSummary() == '"Guten Tag"',
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/test/test_ttk/
test_widgets.py 370 child3 = ttk.Label()
381 self.paned.insert('end', child3)
383 (str(child2), str(child), str(child3)))
387 self.paned.insert('end', child3)
390 # moving child3 to child2 position should result in child2 ending up
391 # in previous child position and child ending up in previous child3
393 self.paned.insert(child2, child3)
395 (str(child3), str(child2), str(child)))
660 child3 = ttk.Label()
661 self.nb.insert(1, child3)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/test/test_ttk/
test_widgets.py 370 child3 = ttk.Label()
381 self.paned.insert('end', child3)
383 (str(child2), str(child), str(child3)))
387 self.paned.insert('end', child3)
390 # moving child3 to child2 position should result in child2 ending up
391 # in previous child position and child ending up in previous child3
393 self.paned.insert(child2, child3)
395 (str(child3), str(child2), str(child)))
660 child3 = ttk.Label()
661 self.nb.insert(1, child3)
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
TableLayoutTest.java 395 View child3 = new ListView(mContext); local
396 tableLayout.addView(child3);
399 assertSame(child3, tableLayout.getChildAt(2));
431 View child3 = new ListView(mContext); local
432 tableLayout.addView(child3, -1);
435 assertSame(child3, tableLayout.getChildAt(2));
518 View child3 = new ListView(mContext); local
519 assertNull(child3.getLayoutParams());
520 tableLayout.addView(child3, -1, new ListView.LayoutParams(300, 400));
523 assertSame(child3, tableLayout.getChildAt(2))
    [all...]
LayoutDirectionTest.java 115 ViewGroup child3 = (ViewGroup) getActivity().findViewById(child3Id); local
116 assertEquals(child3ResDir, child3.getLayoutDirection());
  /external/chromium_org/ui/aura/
window_unittest.cc 679 Window child3(NULL);
680 child3.Init(aura::WINDOW_LAYER_NOT_DRAWN);
681 child3.set_id(3);
685 parent.AddChild(&child3);
694 parent.StackChildBelow(&child3, &child2);
697 parent.StackChildBelow(&child3, &child1);
709 Window child3(NULL);
710 child3.Init(aura::WINDOW_LAYER_NOT_DRAWN);
726 parent.AddChild(&child3);
731 EXPECT_EQ(&child3, parent.children()[2])
    [all...]
  /external/chromium_org/cc/layers/
layer_unittest.cc 199 scoped_refptr<Layer> child3 = Layer::Create(); local
207 EXPECT_SET_NEEDS_FULL_TREE_SYNC(1, parent->InsertChild(child3, 0));
209 EXPECT_EQ(child3, parent->children()[0]);
210 EXPECT_EQ(parent.get(), child3->parent());
216 EXPECT_EQ(child3, parent->children()[1]);
224 EXPECT_EQ(child3, parent->children()[2]);
233 EXPECT_EQ(child3, parent->children()[2]);
    [all...]
  /external/chromium_org/components/bookmarks/browser/
bookmark_model_unittest.cc 1005 BookmarkNode* child3 = AsMutable(parent->GetChild(3)); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
CanvasViewInfoTest.java 255 ViewInfo child3 = new ViewInfo("AbsoluteLayout", null, 10, 40, 50, 15); local
256 root.setChildren(Arrays.asList(child1, child2, child3));
311 ViewInfo child3 = new ViewInfo("AbsoluteLayout", null, 10, 40, 50, 15); local
312 root.setChildren(Arrays.asList(child1, child2, child3));
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/prefs/
OldPreferencesTest.java 141 pref.node("child3");
702 Preferences child3; local
711 child3 = pref.node("mock4/mock5/mock6");
717 child3.removeNode();
    [all...]
  /external/chromium_org/cc/trees/
layer_tree_host_common_unittest.cc 2553 scoped_refptr<LayerWithForcedDrawsContent> child3 = local
2701 scoped_refptr<LayerWithForcedDrawsContent> child3 = local
2934 scoped_refptr<LayerWithForcedDrawsContent> child3 = local
3023 scoped_refptr<LayerWithForcedDrawsContent> child3 = local
3270 scoped_refptr<ContentLayer> child3 = CreateDrawableContentLayer(&client); local
6895 scoped_ptr<LayerImpl> child3 = local
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/prefs/
AbstractPreferencesTest.java 181 // MockAbstractPreferences child3 = new MockAbstractPreferences(pref,
182 // "child3");
189 pref.node("child3");
491 grandchild = pref.node("child3/grandchild");
494 Preferences child3 = child; local
496 if (childs[i].name().equals("child3")) {
497 child3 = childs[i];
501 assertSame(child3, grandchild.parent());
    [all...]

Completed in 725 milliseconds