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

  /dalvik/libcore/dom/src/test/java/org/w3c/domts/level2/core/
elementgetelementsbytagnamens04.java 77 Element child1; local
86 child1 = doc.createElementNS("http://www.w3.org/DOM/Level1", "dom:child");
89 appendedChild = element.appendChild(child1);
  /external/webkit/JavaScriptCore/API/tests/
minidom.js 52 child1 = new Node();
56 node.appendChild(child1);
69 node.removeChild(child1);
  /cts/tests/tests/widget/src/android/widget/cts/
TableLayoutTest.java 527 final TextView child1 = (TextView) ((TableRow) tableLayout.getChildAt(0)).getChildAt(1); local
532 int oldWidth1 = child1.getWidth();
536 // child1 has 2 columns.
537 child1.measure(MeasureSpec.UNSPECIFIED, MeasureSpec.EXACTLY);
540 int orignalWidth1 = child1.getMeasuredWidth() + column12.getMeasuredWidth();
554 assertTrue(oldWidth1 > child1.getWidth());
558 assertEquals(dropNegative(orignalWidth1 + extraSpace), child1.getWidth());
561 oldWidth1 = child1.getWidth();
572 assertTrue(oldWidth1 < child1.getWidth());
576 assertEquals(dropNegative(orignalWidth1 + extraSpace), child1.getWidth())
    [all...]
GridViewTest.java 327 View child1 = mGridView.getChildAt(1); local
328 assertEquals(0, child1.getLeft() - child0.getRight());
338 child1 = mGridView.getChildAt(1);
339 assertEquals(5, child1.getLeft() - child0.getRight());
361 View child1 = mGridView.getChildAt(1); local
362 assertEquals(0, child1.getTop() - child0.getBottom());
372 child1 = mGridView.getChildAt(1);
373 assertEquals(5, child1.getTop() - child0.getBottom());
619 View child1 = mGridView.getChildAt(1);
621 assertEquals(child0.getBottom(), child1.getBottom())
    [all...]
HorizontalScrollViewTest.java 128 TextView child1 = new TextView(mActivity); local
130 scrollView.addView(child1);
154 TextView child1 = new TextView(mActivity); local
156 scrollView.addView(child1, 1);
169 child1 = new TextView(mActivity);
171 scrollView.addView(child1, -1);
206 TextView child1 = new TextView(mActivity); local
208 scrollView.addView(child1, new ViewGroup.LayoutParams(200, 100));
244 TextView child1 = new TextView(mActivity); local
246 scrollView.addView(child1, 0, new ViewGroup.LayoutParams(200, 100))
    [all...]
ScrollViewTest.java 147 TextView child1 = new TextView(mActivity); local
149 scrollView.addView(child1);
172 TextView child1 = new TextView(mActivity); local
174 scrollView.addView(child1, 1);
187 child1 = new TextView(mActivity);
189 scrollView.addView(child1, -1);
224 TextView child1 = new TextView(mActivity); local
226 scrollView.addView(child1, new ViewGroup.LayoutParams(200, 100));
262 TextView child1 = new TextView(mActivity); local
264 scrollView.addView(child1, 0, new ViewGroup.LayoutParams(200, 100))
    [all...]
  /dalvik/libcore/prefs/src/test/java/org/apache/harmony/prefs/tests/java/util/prefs/
FilePreferencesImplTest.java 124 Preferences child1 = uroot.node("child1"); local
126 Preferences grandchild = child1.node("grand");
130 assertContains(childNames, "child1");
134 childNames = child1.childrenNames();
140 child1.removeNode();
142 assertNotContains(childNames, "child1");
148 assertNotContains(childNames, "child1");
165 Preferences child1 = sroot.node("child1"); local
229 Preferences child1 = uroot.node("child1"); local
    [all...]
NodeChangeEventTest.java 116 Preferences child1 = pref.node("mock1"); local
121 child1.removeNode();
148 Preferences child1 = pref.node("mock1"); local
153 child1.removeNode();
PreferencesTest.java 723 Preferences child1 = pref.node("child1"); local
727 child1.node("subchild1");
729 assertSame(pref, child1.parent());
731 assertEquals("child1", pref.childrenNames()[0]);
732 assertEquals(1, child1.childrenNames().length);
733 assertEquals("subchild1", child1.childrenNames()[0]);
1478 Preferences child1 = pref.node("child1"); local
1508 Preferences child1 = null; local
    [all...]
  /dalvik/libcore/xml/src/test/java/tests/org/w3c/dom/
ElementGetElementsByTagNameNS.java 81 Element child1; local
90 child1 = doc.createElementNS("http://www.w3.org/DOM/Level1",
95 element.appendChild(child1);
  /sdk/emulator/qtools/tests/gtrace/
test.c 6 int child1();
116 a += child1();
153 int child1() function
  /cts/tests/tests/view/src/android/view/animation/cts/
GridLayoutAnimationControllerTest.java 159 * @param child1
164 private void assertChildrenDelay(Animation child1, Animation child2, Animation child3) {
165 long startTime = child1.getStartTime();
166 long offsetTime1 = child1.getStartOffset();
177 // child1 has started animation, child2 and child3 haven't started
178 child1.getTransformation(startTime + 500, transformation1);
185 // child1 has finished, child2 and child3 haven't started
186 child1.getTransformation(startTime + 1200, transformation1);
193 // child1 has finished, child2 has started animation, child3 hasn't started.
194 child1.getTransformation(startTime + 2000, transformation1)
    [all...]
LayoutAnimationControllerTest.java 114 // child1 has started animation, child2 and child3 haven't started
122 // child2 has started animation, child1 has finished and child3 hasn't started
130 // child3 has started animation, child1, child2 have finished
155 // child3 has started animation, child1 and child2 haven't started
163 // child2 has started animation, child3 has finished and child1 hasn't started
171 // child1 has started animation, child2 and child3 has finished
218 // child1 has started animation, child2 and child3 haven't started
226 // child1 has finished, child2 and child3 haven't started
234 // child1 has finished, child2 has started animation, child3 hasn't started.
242 // child1 and child2 have finished, child3 hasn't starte
    [all...]
  /dalvik/libcore/xml/src/main/java/org/apache/xml/utils/
DOMHelper.java 348 * Figure out if child2 is after child1 in document order.
356 * @param parent Must be the parent of both child1 and child2.
357 * @param child1 Must be the child of parent and not equal to child2.
358 * @param child2 Must be the child of parent and not equal to child1.
359 * @return true if child 2 is after child1 in document order.
361 private static boolean isNodeAfterSibling(Node parent, Node child1,
366 short child1type = child1.getNodeType();
394 if (child1 == child || isNodeTheSame(child1, child))
438 if (child1 == child || isNodeTheSame(child1, child)
    [all...]
  /external/webkit/WebCore/dom/
Node.cpp 2109 Node* child1 = chain1[--index1]; local
    [all...]
  /external/bison/tests/
testsuite     [all...]

Completed in 607 milliseconds