HomeSort by relevance Sort by last modified time
    Searched full:layout (Results 701 - 725 of 5312) sorted by null

<<21222324252627282930>>

  /development/samples/ApiDemos/src/com/example/android/apis/app/
ScreenOrientation.java 54 setContentView(R.layout.screen_orientation);
58 this, R.array.screen_orientations, android.R.layout.simple_spinner_item);
59 adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
SendResult.java 47 // See assets/res/any/layout/hello_world.xml for this
48 // view layout definition, which is being set here as
50 setContentView(R.layout.send_result);
  /development/samples/ApiDemos/src/com/example/android/apis/content/
ReadAsset.java 41 // See assets/res/any/layout/styled_text.xml for this
42 // view layout definition.
43 setContentView(R.layout.read_asset);
  /development/samples/ApiDemos/src/com/example/android/apis/view/
Animation2.java 39 setContentView(R.layout.animation_2);
46 android.R.layout.simple_spinner_item, mStrings);
47 adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
  /development/samples/SkeletonApp/
readme.txt 39 res/layout/skeleton_activity.xml
41 The res/layout/ directory contains XML files describing user interface
54 skeleton_activity.xml. Like layout files, the base name is used for the
  /development/samples/Support4Demos/src/com/example/android/supportv4/app/
SendResult.java 47 // See assets/res/any/layout/hello_world.xml for this
48 // view layout definition, which is being set here as
50 setContentView(R.layout.send_result);
  /development/samples/training/multiscreen/newsreader/src/com/example/android/newsreader/
ArticleActivity.java 26 * This activity is started only when the screen is not large enough for a two-pane layout, in
28 * kills itself if the display is reconfigured into a shape that allows a two-pane layout, since
50 // If we are in two-pane layout mode, this activity is no longer necessary
  /external/chromium/chrome/browser/notifications/
balloon_collection_impl.cc 100 balloon->set_content_size(Layout::ConstrainToSizeLimits(size));
169 // Start from the layout origin.
233 BalloonCollectionImpl::Layout::Layout() : placement_(INVALID) {
237 void BalloonCollectionImpl::Layout::GetMaxLinearSize(int* max_balloon_size,
246 gfx::Point BalloonCollectionImpl::Layout::GetLayoutOrigin() const {
273 gfx::Point BalloonCollectionImpl::Layout::NextPosition(
312 gfx::Point BalloonCollectionImpl::Layout::OffScreenLocation() const {
339 bool BalloonCollectionImpl::Layout::RequiresOffsets() const {
340 // Layout schemes that grow up from the bottom require offsets
    [all...]
  /external/clang/lib/AST/
MicrosoftCXXABI.cpp 44 const ASTRecordLayout &Layout = Context.getASTRecordLayout(RD);
49 return Layout.getNonVirtualSize() == PointerSize ||
50 Layout.getNonVirtualSize() == PointerSize * 2;
  /external/webkit/Source/WebCore/rendering/
RenderFrame.cpp 63 void RenderFrame::layout() function in class:WebCore::RenderFrame
83 // Trigger a layout of the FrameView which will schedule a relayout of this RenderFrame.
85 view->layout();
  /external/webkit/Source/WebCore/rendering/svg/
SVGTextLayoutAttributesBuilder.h 33 // SVGTextLayoutAttributesBuilder performs the first layout phase for SVG text.
38 // The first layout phase only extracts the relevant information needed in RenderBlockLineLayout
40 // The second layout phase is carried out by SVGTextLayoutEngine.
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/
rebaseline_chromium_webkit_tests_unittest.py 97 ARCHIVE_URL + '/Webkit_Mac10_5/2/layout-test-results.zip': {
98 'layout-test-results/failures/expected/image-actual.txt': 'new-image-txt',
99 'layout-test-results/failures/expected/image-actual.checksum': 'new-image-checksum',
100 'layout-test-results/failures/expected/image-actual.png': 'new-image-png',
101 'layout-test-results/failures/expected/image_checksum-actual.txt': 'png-comment-txt',
102 'layout-test-results/failures/expected/image_checksum-actual.checksum': '0123456789',
103 'layout-test-results/failures/expected/image_checksum-actual.png': 'tEXtchecksum\x000123456789',
105 ARCHIVE_URL + '/Webkit_Mac10_6/4/layout-test-results.zip': {
106 'layout-test-results/failures/expected/image-actual.txt': 'new-image-txt',
107 'layout-test-results/failures/expected/image-actual.checksum': 'new-image-checksum'
    [all...]
  /frameworks/base/core/java/android/text/
BoringLayout.java 26 * A BoringLayout is a very simple Layout implementation for text that
31 * <p>This class is used by widgets to control text layout. You should not need
34 * you are encouraged to use a Layout instead of calling
38 public class BoringLayout extends Layout implements TextUtils.EllipsizeCallback {
63 * no one is still using this Layout.
85 * no one is still using this Layout.
177 if (source instanceof String && align == Layout.Alignment.ALIGN_NORMAL) {
212 line.set(paint, source, 0, source.length(), Layout.DIR_LEFT_TO_RIGHT,
213 Layout.DIRS_ALL_LEFT_TO_RIGHT, false, null);
306 line.set(paint, text, 0, length, Layout.DIR_LEFT_TO_RIGHT
    [all...]
  /frameworks/base/core/java/android/widget/
TwoLineListItem.java 37 * {@link android.R.layout#two_line_list_item standard layout resource for TwoLineListView}
39 * layout for this object.
  /frameworks/base/core/tests/coretests/src/android/widget/layout/table/
CellSpanTest.java 17 package android.widget.layout.table;
19 import android.widget.layout.table.CellSpan;
27 * {@link android.widget.layout.table.CellSpan} is
VerticalGravityTest.java 17 package android.widget.layout.table;
19 import android.widget.layout.table.VerticalGravity;
29 * {@link android.widget.layout.table.VerticalGravity} is
  /frameworks/base/core/tests/coretests/src/android/widget/listview/
ListRetainsFocusAcrossLayoutsTest.java 56 assertTrue("bottom botton at position 0 should be focused after layout",
70 assertTrue("top botton at position 1 should be focused after layout",
85 assertTrue("bottom botton at position 1 should be focused after layout",
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
BitmapsAlphaActivity.java 37 final FrameLayout layout = new FrameLayout(this); local
38 layout.addView(view, new FrameLayout.LayoutParams(480, 800, Gravity.CENTER));
39 setContentView(layout);
  /packages/apps/Browser/src/com/android/browser/view/
PieStackView.java 62 public void layout(int anchorX, int anchorY, boolean left, float angle) { method in class:PieStackView
63 super.layout(anchorX, anchorY, left, angle);
80 view.layout(x, top, x + mChildWidth, top + mChildHeight);
  /packages/apps/Calendar/src/com/android/calendar/selectcalendars/
SelectVisibleCalendarsActivity.java 38 setContentView(R.layout.simple_frame_layout);
44 mFragment = new SelectVisibleCalendarsFragment(R.layout.calendar_sync_item);
54 // Specified as listener via android:onClick in a layout xml
  /packages/apps/Contacts/res/layout-sw680dp-w1000dp/
contact_detail_container.xml 18 Two-column layout for a contact with social updates. If the contact does not
31 with social updates. This view ID must match with a view ID in the layout
49 with social updates. This view ID must match with a view ID in the layout
  /packages/apps/Email/res/layout/
account_setup_basics.xml 17 <!-- Small-screen holder - see layout-xlarge for large-screen version -->
43 layout="@layout/account_setup_basics_common"
three_pane_collapsible_impl.xml 19 <!-- Implementation of a three pane layout where in some modes, the left pane is
51 layout="@layout/message_command_button_view"
  /packages/apps/Email/res/layout-sw600dp-land/
account_setup_basics.xml 17 <!-- Account setup - XL - landscape - see layout/ for small-screen version -->
76 layout="@layout/account_setup_basics_common"
account_setup_names.xml 17 <!-- Account Names - XL - landscape - see layout/ for small-screen version -->
68 layout="@layout/account_setup_names_common"

Completed in 223 milliseconds

<<21222324252627282930>>