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

<<21222324252627282930>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/
SectionHelper.java 28 import org.eclipse.swt.layout.GridLayout;
47 * create default layout or add typical widgets.
112 * If the parent layout if a TableWrapLayout, maximize it to span over all columns.
163 * Forces the section to recompute its layout and redraw.
181 section.layout(true /* changed */, true /* all */);
198 TableWrapLayout layout = new TableWrapLayout(); local
199 layout.numColumns = numColumns;
200 table.setLayout(layout);
221 GridLayout layout = new GridLayout(); local
222 layout.numColumns = numColumns
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
BaseLayoutRuleTest.java 17 package com.android.ide.common.layout;
25 import com.android.ide.common.layout.BaseLayoutRule.AttributeFilter;
164 BaseLayoutRule layout = new BaseLayoutRule(); local
175 layout.addAttributes(newNode, oldElement, idMap, filter);
182 BaseLayoutRule layout = new BaseLayoutRule(); local
203 layout.addAttributes(newNode, oldElement, idMap, filter);
239 BaseLayoutRule layout = new BaseLayoutRule(); local
240 layout.addInnerElements(newNode, oldElement, idMap);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
ConfigurationMenuListener.java 17 package com.android.ide.eclipse.adt.internal.editors.layout.configuration;
19 import static com.android.ide.eclipse.adt.internal.editors.layout.gle2.RenderPreviewMode.CUSTOM;
20 import static com.android.ide.eclipse.adt.internal.editors.layout.gle2.RenderPreviewMode.DEFAULT;
21 import static com.android.ide.eclipse.adt.internal.editors.layout.gle2.RenderPreviewMode.INCLUDES;
22 import static com.android.ide.eclipse.adt.internal.editors.layout.gle2.RenderPreviewMode.LOCALES;
23 import static com.android.ide.eclipse.adt.internal.editors.layout.gle2.RenderPreviewMode.NONE;
24 import static com.android.ide.eclipse.adt.internal.editors.layout.gle2.RenderPreviewMode.SCREENS;
25 import static com.android.ide.eclipse.adt.internal.editors.layout.gle2.RenderPreviewMode.VARIATIONS;
34 import com.android.ide.eclipse.adt.internal.editors.layout.LayoutEditorDelegate;
35 import com.android.ide.eclipse.adt.internal.editors.layout.gle2.IncludeFinder
    [all...]
  /development/samples/training/ads-and-ux/src/com/example/training/ads/
AdsCatalogActivity.java 50 setContentView(R.layout.fragment_pager);
114 R.layout.ad_top,
115 R.layout.ad_bottom,
116 R.layout.ad_next_to_button,
117 R.layout.ad_covers_content };
  /external/chromium_org/ash/desktop_background/
wallpaper_resizer_unittest.cc 70 WallpaperLayout layout) {
72 resizer.reset(new WallpaperResizer(image, target_size, layout));
106 WallpaperLayout layout = layouts[i]; local
111 layout);
118 layout);
125 // STRETCH layout"
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_format_table.py 39 def layout_map(layout):
40 return 'UTIL_FORMAT_LAYOUT_' + str(layout).upper()
104 print " %s," % (layout_map(format.layout),)
138 if format.layout == 's3tc' or format.layout == 'rgtc':
  /external/jmonkeyengine/engine/src/android/jme3test/android/
DemoMainActivity.java 19 setContentView(R.layout.main);
31 this, R.array.eglconfig_array, android.R.layout.simple_spinner_item);
32 adapterDropDownConfig.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
55 this, R.array.logging_array, android.R.layout.simple_spinner_item);
56 adapterDropDownLogging.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
  /external/mesa3d/src/gallium/auxiliary/util/
u_format_table.py 39 def layout_map(layout):
40 return 'UTIL_FORMAT_LAYOUT_' + str(layout).upper()
104 print " %s," % (layout_map(format.layout),)
138 if format.layout == 's3tc' or format.layout == 'rgtc':
  /frameworks/base/core/java/android/text/method/
BaseKeyListener.java 117 final Layout layout = ((TextView) view).getLayout(); local
118 if (layout != null) {
119 final int line = layout.getLineForOffset(Selection.getSelectionStart(content));
120 final int start = layout.getLineStart(line);
121 final int end = layout.getLineEnd(line);
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
ViewLayerInvalidationActivity.java 50 setContentView(R.layout.view_layer_invalidation);
108 for (LinearLayout layout : linearLayouts) {
109 layout.setLayerType(nestedLayersOn ?
113 for (LinearLayout layout : topLayouts) {
114 layout.setLayerType(View.LAYER_TYPE_HARDWARE, null);
  /packages/apps/VideoEditor/src/com/android/videoeditor/
ExportOptionsDialog.java 65 // Set the layout
68 final View myView = vi.inflate(R.layout.export_options_dialog_view, null);
112 context, android.R.layout.simple_spinner_item);
113 sizeAdapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
125 android.R.layout.simple_spinner_item);
126 qualityAdapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SelectionItem.java 17 package com.android.ide.eclipse.adt.internal.editors.layout.gle2;
22 import com.android.ide.eclipse.adt.internal.editors.layout.LayoutEditorDelegate;
23 import com.android.ide.eclipse.adt.internal.editors.layout.gre.NodeProxy;
24 import com.android.ide.eclipse.adt.internal.editors.layout.gre.ViewMetadataRepository;
25 import com.android.ide.eclipse.adt.internal.editors.layout.uimodel.UiViewElementNode;
79 * layout element in the editor.
212 * Returns true if this selection item is a layout
214 * @return true if this selection item is a layout
  /external/chromium_org/ash/system/chromeos/network/
tray_sms.cc 26 #include "ui/views/layout/box_layout.h"
27 #include "ui/views/layout/fill_layout.h"
28 #include "ui/views/layout/grid_layout.h"
130 views::GridLayout* layout = new views::GridLayout(this); local
131 SetLayoutManager(layout);
133 views::ColumnSet* columns = layout->AddColumnSet(0);
148 layout->AddPaddingRow(0, kPaddingVertical);
149 layout->StartRow(0, 0);
150 layout->AddView(number_label_);
151 layout->AddView(close_button, 1, 2); // 2 rows for ico
    [all...]
  /external/chromium_org/chrome/browser/ui/views/extensions/
media_galleries_dialog_views.cc 24 #include "ui/views/layout/box_layout.h"
25 #include "ui/views/layout/grid_layout.h"
26 #include "ui/views/layout/layout_constants.h"
40 // This container has the right Layout() impl to use within a ScrollView.
46 virtual void Layout() OVERRIDE;
52 void ScrollableView::Layout() {
62 views::View::Layout();
100 // Outer dialog layout.
104 views::GridLayout* layout = views::GridLayout::CreatePanel(contents_); local
105 contents_->SetLayoutManager(layout);
    [all...]
  /external/chromium_org/chrome/browser/ui/views/
hung_renderer_view.cc 35 #include "ui/views/layout/grid_layout.h"
36 #include "ui/views/layout/layout_constants.h"
381 GridLayout* layout = GridLayout::CreatePanel(this);
382 SetLayoutManager(layout);
385 ColumnSet* column_set = layout->AddColumnSet(double_column_set_id);
392 layout->StartRow(0, double_column_set_id);
393 layout->AddView(frozen_icon_view, 1, 3);
396 layout->AddView(
399 layout->AddPaddingRow(0, views::kRelatedControlVerticalSpacing);
401 layout->StartRow(0, double_column_set_id)
    [all...]
  /external/chromium_org/content/shell/
shell_aura.cc 23 #include "ui/views/layout/fill_layout.h"
24 #include "ui/views/layout/grid_layout.h"
92 Layout();
113 views::GridLayout* layout = new views::GridLayout(this); local
114 SetLayoutManager(layout);
116 views::ColumnSet* column_set = layout->AddColumnSet(0);
122 layout->AddPaddingRow(0, 2);
126 layout->StartRow(0, 0);
184 layout->AddView(toolbar_view_);
187 layout->AddPaddingRow(0, 5)
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
Workspace.java 518 final CellLayout layout; local
520 layout = mLauncher.getHotseat().getLayout();
542 layout = (CellLayout) getChildAt(screen);
565 if (!layout.addViewToCellLayout(child, insert ? 0 : -1, childId, lp, markCellsAsOccupied)) {
    [all...]
AppsCustomizePagedView.java 298 PagedViewCellLayout layout = (PagedViewCellLayout) getPageAt(currentPage); local
299 PagedViewCellLayoutChildren childrenLayout = layout.getChildrenLayout();
307 PagedViewGridLayout layout = (PagedViewGridLayout) getPageAt(currentPage); local
309 int childCount = layout.getChildCount();
358 // Note that we transpose the counts in portrait so that we get a similar layout
372 // Temp hack for now: only use the max cell count Y for widget layout
629 // We want the first widget layout to be the correct size. This will be important
885 CellLayout layout = (CellLayout) workspace.getChildAt(currentScreen); local
1028 PagedViewCellLayout layout = (PagedViewCellLayout) getPageAt(page); local
1190 final PagedViewGridLayout layout = (PagedViewGridLayout) getPageAt(page); local
1309 PagedViewGridLayout layout = (PagedViewGridLayout) getPageAt(page); local
1342 PagedViewGridLayout layout = new PagedViewGridLayout(context, mWidgetCountX, local
1350 PagedViewCellLayout layout = new PagedViewCellLayout(context); local
    [all...]
  /external/chromium/chrome/browser/chromeos/input_method/
candidate_window.cc 23 #include "views/layout/fill_layout.h"
24 #include "views/layout/grid_layout.h"
91 views::GridLayout* layout = new views::GridLayout(wrapper); local
92 wrapper->SetLayoutManager(layout); // |wrapper| owns |layout|.
93 layout->SetInsets(insets);
95 views::ColumnSet* column_set = layout->AddColumnSet(0);
99 layout->StartRow(0, 0);
102 layout->AddView(view); // |view| is owned by |wraper|, not |layout|
634 views::GridLayout* layout = new views::GridLayout(this); local
773 views::GridLayout* layout = new views::GridLayout(this); local
1011 views::GridLayout* layout = new views::GridLayout(candidate_area_); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
EmulatorConfigTab.java 54 import org.eclipse.swt.layout.GridData;
55 import org.eclipse.swt.layout.GridLayout;
178 GridLayout layout; local
185 layout = new GridLayout();
186 layout.numColumns = 1;
187 targetModeGroup.setLayout(layout);
199 layout = new GridLayout(1, false);
200 layout.marginRight = layout.marginHeight = 0;
201 layout.marginLeft = 30
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
ArrayAdapterTest.java 43 mArrayAdapter = new ArrayAdapter<String>(mContext, R.layout.simple_dropdown_item_1line);
48 new ArrayAdapter<String>(mContext, R.layout.simple_dropdown_item_1line);
51 new ArrayAdapter<String>(mContext, R.layout.simple_dropdown_item_1line, R.id.text1);
52 new ArrayAdapter<String>(mContext, R.layout.simple_dropdown_item_1line, INVALD_ID);
54 new ArrayAdapter<String>(mContext, R.layout.simple_dropdown_item_1line,
57 new ArrayAdapter<String>(mContext, R.layout.simple_dropdown_item_1line, R.id.text1,
64 new ArrayAdapter<String>(mContext, R.layout.simple_dropdown_item_1line, list);
66 new ArrayAdapter<String>(mContext, R.layout.simple_dropdown_item_1line, R.id.text1, list);
70 new ArrayAdapter<String>(null, R.layout.simple_dropdown_item_1line);
187 mArrayAdapter.setDropDownViewResource(R.layout.tabhost_layout)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
RelativeLayoutConversionHelper.java 16 package com.android.ide.eclipse.adt.internal.editors.layout.refactoring;
53 import static com.android.ide.common.layout.GravityHelper.GRAVITY_BOTTOM;
54 import static com.android.ide.common.layout.GravityHelper.GRAVITY_CENTER_HORIZ;
55 import static com.android.ide.common.layout.GravityHelper.GRAVITY_CENTER_VERT;
56 import static com.android.ide.common.layout.GravityHelper.GRAVITY_FILL_HORIZ;
57 import static com.android.ide.common.layout.GravityHelper.GRAVITY_FILL_VERT;
58 import static com.android.ide.common.layout.GravityHelper.GRAVITY_LEFT;
59 import static com.android.ide.common.layout.GravityHelper.GRAVITY_RIGHT;
60 import static com.android.ide.common.layout.GravityHelper.GRAVITY_TOP;
61 import static com.android.ide.common.layout.GravityHelper.GRAVITY_VERT_MASK
322 Element layout = (Element) parent; local
    [all...]
ChangeViewWizard.java 17 package com.android.ide.eclipse.adt.internal.editors.layout.refactoring;
23 import com.android.ide.eclipse.adt.internal.editors.layout.LayoutEditorDelegate;
24 import com.android.ide.eclipse.adt.internal.editors.layout.descriptors.ViewElementDescriptor;
25 import com.android.ide.eclipse.adt.internal.editors.layout.gle2.CustomViewFinder;
26 import com.android.ide.eclipse.adt.internal.editors.layout.gre.ViewMetadataRepository;
34 import org.eclipse.swt.layout.GridData;
35 import org.eclipse.swt.layout.GridLayout;
153 // Now add ALL known layout descriptors in case the user has
  /packages/apps/Launcher3/src/com/android/launcher3/
AppsCustomizePagedView.java 303 AppsCustomizeCellLayout layout = (AppsCustomizeCellLayout) getPageAt(currentPage); local
304 ShortcutAndWidgetContainer childrenLayout = layout.getShortcutsAndWidgets();
312 PagedViewGridLayout layout = (PagedViewGridLayout) getPageAt(currentPage); local
314 int childCount = layout.getChildCount();
616 // We want the first widget layout to be the correct size. This will be important
869 CellLayout layout = (CellLayout) workspace.getChildAt(currentScreen); local
997 AppsCustomizeCellLayout layout = (AppsCustomizeCellLayout) getPageAt(page); local
1156 final PagedViewGridLayout layout = (PagedViewGridLayout) getPageAt(page); local
1275 PagedViewGridLayout layout = (PagedViewGridLayout) getPageAt(page); local
1311 AppsCustomizeCellLayout layout = new AppsCustomizeCellLayout(context); local
1318 PagedViewGridLayout layout = new PagedViewGridLayout(context, mWidgetCountX, local
    [all...]
  /external/chromium_org/chrome/browser/ui/views/website_settings/
permission_selector_view.cc 18 #include "ui/views/layout/grid_layout.h"
161 views::GridLayout* layout = new views::GridLayout(this); local
162 SetLayoutManager(layout);
164 views::ColumnSet* column_set = layout->AddColumnSet(column_set_id);
185 layout->StartRow(1, column_set_id);
193 layout->AddView(icon_,
203 layout->AddView(label,
222 layout->AddView(menu_button_);

Completed in 1883 milliseconds

<<21222324252627282930>>