/development/samples/ApiDemos/src/com/example/android/apis/view/ |
Tabs1.java | 45 .setContent(R.id.view2));
|
_package.html | 297 The second view (view2) is pinned to the bottom of the screen: <code>android:layout_alignParentBottom="true"</code>. 301 view2: <code>android:layout_above="view2" android:layout_below="view1"</code>. This has the effect of making 302 view3 stretch between view1 and view2.</p> 304 <p>Note that since view3 depends on the positions of both view1 and view2, it is defined after them in the layout
|
/frameworks/base/core/tests/coretests/res/layout/ |
layout_three.xml | 22 <view class="android.view.InflateTest$ViewOne" android:id="@+id/view2" android:layout_width="match_parent" android:layout_height="match_parent"/>
|
/cts/tests/tests/widget/src/android/widget/cts/ |
TabWidgetTest.java | 178 View view2 = new RelativeLayout(mActivity); local 179 mockTabWidget.addView(view2); 180 assertSame(view2, mockTabWidget.getChildAt(1));
|
/external/chromium_org/third_party/sqlite/src/test/ |
capi2.test | 759 CREATE VIEW view2 AS SELECT * FROM tab1 limit 10 offset 10; 763 check_origins {SELECT col2, col1 FROM view2} 766 check_origins {SELECT col2 AS hello, col1 AS world FROM view2} 769 check_origins {SELECT b, a FROM (SELECT col1 AS a, col2 AS b FROM view2)} 772 check_origins {SELECT (SELECT col2 FROM view2), (SELECT col1 FROM view2)} 775 check_origins {SELECT (SELECT col2), (SELECT col1) FROM view2} 778 check_origins {SELECT * FROM view2} 781 check_origins {select * from (select * from view2)} 784 check_origins {select * from (select * from (select * from view2))} [all...] |
/external/chromium_org/third_party/webrtc/test/manual/ |
multiple-video.html | 45 <td><video width="320" height="240" id="view2"
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/bytecode/ |
AndroidTranslatorTest.java | 117 View view2 = new View(null); local 122 view2.bringToFront();
|
/frameworks/base/docs/html/guide/topics/ui/layout/ |
relative.jd | 71 For example, you can declare that "view1" be positioned below "view2" even if "view2" is the last
|
/external/chromium_org/ash/ |
focus_cycler_unittest.cc | 326 views::View* view2 = new views::View; local 327 view2->SetFocusable(true); 328 pane1->AddChildView(view2);
|
/external/replicaisland/src/com/replica/replicaisland/ |
LevelSelectActivity.java | 158 TextView view2 = (TextView)sourceView.findViewById(mTextViewResource2); local 159 if (view2 != null) { 160 view2.setText(mLevelData.get(position).level.timeStamp);
|
/development/samples/ApiDemos/res/layout/ |
transition_scene3.xml | 35 android:id="@+id/view2"/>
|
/development/samples/ApiDemos/src/com/example/android/apis/animation/ |
Transitions.java | 77 setNewSize(R.id.view2, 150, 25);
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/ |
ListViewTest.java | 96 View view2 = new View(null); local 97 view2.setId(2); 102 listView.addHeaderView(view2, null, false); 107 assertThat(shadowOf(listView).getHeaderViews().get(2), sameInstance(view2));
|
/external/chromium_org/ui/views/layout/ |
grid_layout_unittest.cc | 593 View* view2 = new SettableSizeView(gfx::Size(4, 40)); local 595 layout.AddView(view2); 607 // And view2 should be 8 pixels wide: 609 ExpectViewBoundsEquals(4, 40, 8, 40, view2); 636 View* view2 = new SettableSizeView(gfx::Size(20, 20)); local 637 layout.AddView(view2, 1, 1, GridLayout::FILL, GridLayout::LEADING);
|
/external/chromium_org/mojo/services/public/cpp/view_manager/tests/ |
view_manager_unittest.cc | 477 View* view2 = View::Create(window_manager()); local 478 window_manager()->GetRoots().front()->AddChild(view2); 480 ViewManager* embedded2 = Embed(window_manager(), view2);
|
/cts/tests/tests/widget/res/layout/ |
relative_layout.xml | 35 <!-- view2, below view1 and has same left position with view1. --> 44 <!-- view3, has same top position with view1 and same bottom position with view2,
|
/external/chromium_org/chrome/browser/ui/cocoa/ |
first_run_dialog.mm | 43 NSInteger CompareFrameY(id view1, id view2, void* context) { 45 CGFloat y2 = NSMinY([view2 frame]);
|
/external/chromium_org/ui/views/widget/ |
widget_interactive_uitest.cc | 834 View* view2 = new View(); local 835 view2->SetFocusable(true); 836 widget2.GetRootView()->AddChildView(view2); 844 focus_manager2->SetFocusedView(view2); 845 EXPECT_EQ(view2, focus_manager2->GetFocusedView()); [all...] |
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/infobar/ |
InfoBarLayout.java | 206 * view2 will be laid out: 211 public void setCustomContent(View view1, View view2) { 212 mCustomGroup = addGroup(view1, view2);
|
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/ |
StaggeredGridLayoutManagerTest.java | 561 View view2 = mLayoutManager.findViewByPosition(fullSpanIndex + 2); local 564 LayoutParams lp2 = (LayoutParams) view2.getLayoutParams(); 572 mLayoutManager.mPrimaryOrientation.getDecoratedStart(view2)); 589 View view2 = mLayoutManager.findViewByPosition(fullSpanIndex + 2); local 592 LayoutParams lp2 = (LayoutParams) view2.getLayoutParams(); 600 mLayoutManager.mPrimaryOrientation.getDecoratedStart(view2)); [all...] |
/packages/apps/Email/tests/src/com/android/emailcommon/internet/ |
MimeUtilityTest.java | 337 final ArrayList<Part> view2 = new ArrayList<Part>(); local 339 MimeUtility.collectParts(cid2bp, view2, attach2);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/ |
RelativeLayoutConversionHelper.java | [all...] |
/external/chromium_org/ui/views/ |
view_unittest.cc | 2673 View* view2 = new View(); local [all...] |
/frameworks/base/docs/html/training/material/ |
animations.jd | 338 Pair.create(view2, "agreedName2"));
|
/hardware/qcom/media/mm-video-v4l2/vidc/vdec/test/ |
omx_vdec_test.cpp | 855 char *view2 = color_fmt == (OMX_COLOR_FORMATTYPE) local 871 view2) + stride * scanlines; [all...] |