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

1 2

  /external/testng/src/test/java/test/triangle/
Child1.java 10 public class Child1 extends Base {
12 public void child1() { method in class:Child1
  /external/ltp/testcases/open_posix_testsuite/stress/threads/sem_getvalue/
stress.c 117 pthread_t child1, child2; local
163 ret = pthread_create(&child1, NULL, threaded, named);
207 ret = pthread_join(child1, NULL);
  /cts/tests/tests/widget/src/android/widget/cts/
LayoutDirectionTest.java 135 ViewGroup child1 = (ViewGroup) mActivity.findViewById(child1Id); local
136 assertEquals(child1ResDir, child1.getLayoutDirection());
GridViewTest.java 287 View child1 = mGridView.getChildAt(1); local
289 assertEquals(0, child1.getLeft() - child0.getRight());
291 assertEquals(0, child0.getLeft() - child1.getRight());
300 child1 = mGridView.getChildAt(1);
302 assertEquals(5, child1.getLeft() - child0.getRight());
304 assertEquals(5, child0.getLeft() - child1.getRight());
317 View child1 = mGridView.getChildAt(1); local
318 assertEquals(0, child1.getTop() - child0.getBottom());
325 child1 = mGridView.getChildAt(1);
326 assertEquals(5, child1.getTop() - child0.getBottom())
522 View child1 = mGridView.getChildAt(1); local
    [all...]
TableLayoutTest.java 380 View child1 = new TextView(mActivity); local
381 mTableEmpty.addView(child1);
382 assertSame(child1, mTableEmpty.getChildAt(0));
389 assertSame(child1, mTableEmpty.getChildAt(0));
398 assertSame(child1, mTableEmpty.getChildAt(0));
415 View child1 = new TextView(mActivity); local
416 mTableEmpty.addView(child1, 0);
417 assertSame(child1, mTableEmpty.getChildAt(0));
425 assertSame(child1, mTableEmpty.getChildAt(1));
434 assertSame(child1, mTableEmpty.getChildAt(1))
456 View child1 = new TextView(mActivity); local
497 View child1 = new TextView(mActivity); local
    [all...]
HorizontalScrollViewTest.java 122 TextView child1 = new TextView(mActivity); local
124 mScrollViewRegular.addView(child1);
140 TextView child1 = new TextView(mActivity); local
142 mScrollViewRegular.addView(child1, 1);
155 child1 = new TextView(mActivity);
157 mScrollViewRegular.addView(child1, -1);
184 TextView child1 = new TextView(mActivity); local
186 mScrollViewRegular.addView(child1, new ViewGroup.LayoutParams(200, 100));
214 TextView child1 = new TextView(mActivity); local
216 mScrollViewRegular.addView(child1, 0, new ViewGroup.LayoutParams(200, 100))
    [all...]
ScrollViewTest.java 138 TextView child1 = new TextView(mActivity); local
140 mScrollViewRegular.addView(child1);
156 TextView child1 = new TextView(mActivity); local
158 mScrollViewRegular.addView(child1, 1);
171 child1 = new TextView(mActivity);
173 mScrollViewRegular.addView(child1, -1);
200 TextView child1 = new TextView(mActivity); local
202 mScrollViewRegular.addView(child1, new ViewGroup.LayoutParams(200, 100));
230 TextView child1 = new TextView(mActivity); local
232 mScrollViewRegular.addView(child1, 0, new ViewGroup.LayoutParams(200, 100))
    [all...]
LinearLayoutTest.java 654 final View child1 = new View(mActivity); local
655 child1.setBackgroundColor(Color.GREEN);
657 child1.setLayoutParams(childParams);
668 parent.addView(child1);
670 verifyBounds(viewGroup, child1, countDownLatch1, 0, 0, childWidth, childHeight);
682 child1.setVisibility(View.GONE);
693 child1.setVisibility(View.VISIBLE);
694 verifyBounds(viewGroup, child1, countDownLatch3, 0, 0, childWidth, childHeight);
    [all...]
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowViewGroupTest.java 36 private View child1; field in class:ShadowViewGroupTest
49 child1 = new View(context);
55 root.addView(child1);
111 assertThat(root.getChildAt(0)).isSameAs(child1);
120 root.addView(child1);
123 assertThat(root.getChildAt(0)).isSameAs(child1);
131 child1.setTag("tag1");
134 root.addView(child1);
137 assertThat((View) root.findViewWithTag("tag1")).isSameAs(child1);
145 child1.setTag("tag1")
248 View child1 = new View(ApplicationProvider.getApplicationContext()); local
    [all...]
ShadowAccessibilityNodeInfoTest.java 83 AccessibilityNodeInfo child1 = AccessibilityNodeInfo.obtain(); local
84 shadow.addChild(child1);
85 ShadowAccessibilityNodeInfo child1Shadow = shadowOf(child1);
  /external/ltp/testcases/kernel/syscalls/fcntl/
fcntl15.c 71 static int parent, child1, child2, status; variable
110 perror("open on child1 file failed");
132 perror("child1 sigprocmask SIG_BLOCK fail");
140 perror("child1 signal to parent failed");
153 perror("pause in child1 terminated without "
160 perror("child1 sigprocmask SIG_SETMASK fail");
187 if ((child1 = FORK_OR_VFORK()) < 0) {
192 /* child1 */
193 if (child1 == 0) {
205 * need to wait for child1 to open, and lock the area of th
    [all...]
  /external/ltp/testcases/kernel/syscalls/migrate_pages/
migrate_pages02.c 222 pid_t child1, child2; local
227 child1 = SAFE_FORK();
228 if (child1 == 0) {
244 /* signal child2 it's OK to migrate child1 and wait */
248 /* child2 can migrate child1 process if it's privileged */
249 /* child2 can migrate child1 process if it has same uid */
261 /* wait until child1 is ready on node1, then migrate and
264 migrate_to_node(child1, node2);
270 SAFE_WAITPID(child1, NULL, 0);
  /external/pdfium/xfa/fxfa/parser/
cxfa_nodeiteratortemplate_unittest.cpp 52 // child1--child2
74 Node* child1() const { return child1_.get(); } function in class:CXFA_NodeIteratorTemplateTest
114 iter.SetCurrent(child1());
116 EXPECT_EQ(child1(), iter.GetCurrent());
120 Iterator iter(child1());
122 EXPECT_EQ(child1(), iter.GetRoot());
128 EXPECT_EQ(child1(), iter.MoveToNext());
162 EXPECT_EQ(child1(), iter.MoveToPrev());
163 EXPECT_EQ(child1(), iter.GetCurrent());
217 EXPECT_EQ(child1(), iter.MoveToNext())
    [all...]
  /external/snakeyaml/src/test/java/org/pyyaml/
PyStructureTest.java 138 for (Node child1 : seq1.getValue()) {
140 compareNodes(child1, child2);
148 for (NodeTuple child1 : seq1.getValue()) {
150 compareNodes(child1.getKeyNode(), child2.getKeyNode());
151 compareNodes(child1.getValueNode(), child2.getValueNode());
  /external/antlr/runtime/Java/src/main/java/org/antlr/runtime/tree/
TreeWizard.java 362 Object child1 = adaptor.getChild(t1, i); local
364 if ( !_parse(child1, child2, labels) ) {
374 * (root child1 ... child2).
430 Object child1 = adaptor.getChild(t1, i); local
432 if ( !_equals(child1, child2, adaptor) ) {
  /external/dagger2/compiler/src/it/functional-tests/src/test/java/test/builder/
BuilderTest.java 136 TestChildComponentWithBuilderInterface child1 = builder1.build(); local
137 assertThat(child1.s()).isEqualTo("sam");
138 assertThat(child1.i()).isEqualTo(1);
139 assertThat(child1.d()).isWithin(0).of(4.2d);
140 assertThat(child1.f()).isEqualTo(5.5f);
141 assertThat(child1.l()).isEqualTo(6L);
142 assertThat(child1.b()).isEqualTo((byte)7);
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/analysis/
CoverageNodeImplTest.java 88 ICoverageNode child1 = new CoverageNodeImpl(ElementType.GROUP, "sample") { local
98 parent.increment(Arrays.asList(child1, child2));
  /external/skia/tests/
SurfaceSemaphoreTest.cpp 199 sk_gpu_test::ContextInfo child1 = local
203 if (!child1.grContext() || !child2.grContext()) {
207 surface_semaphore_test(reporter, ctxInfo, child1, child2, flushContext);
  /external/skqp/tests/
SurfaceSemaphoreTest.cpp 199 sk_gpu_test::ContextInfo child1 = local
203 if (!child1.grContext() || !child2.grContext()) {
207 surface_semaphore_test(reporter, ctxInfo, child1, child2, flushContext);
  /cts/tests/tests/view/src/android/view/animation/cts/
AnimatorInflaterTest.java 132 final ObjectAnimator child1 = (ObjectAnimator) set.getChildAnimations().get(0); local
136 for (ObjectAnimator animator : new ObjectAnimator[]{child1, child2}) {
  /cts/tests/tests/view/src/android/view/cts/
TooltipTest.java 779 final View child1 = mActivity.findViewById(R.id.overlap1); local
792 assertTrue(hasTooltip(child1));
794 setVisibility(child1, View.INVISIBLE);
ViewGroupTest.java 1497 MockViewGroup child1 = new MockViewGroup(mContext); local
1576 MockViewGroup child1 = new MockViewGroup(mContext); local
1614 MockViewGroup child1 = new MockViewGroup(mContext); local
2023 MockView child1 = new MockView(mContext); local
    [all...]
ViewTest.java 551 View child1 = mActivity.findViewById(R.id.pointer_icon_overlap_child1); local
561 child1.setPointerIcon(iconChild1);
575 setVisibilityOnUiThread(child1, View.GONE);
    [all...]
  /external/u-boot/scripts/kconfig/
gconf.c 1250 struct menu *child1; local
    [all...]
  /external/guice/extensions/struts2/lib/
ognl-3.0.jar 

Completed in 1470 milliseconds

1 2