Searched defs:layout (Results 126 - 150 of 354) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A Dblockstret.c55 const char *layout; // conditional on BLOCK_HAS_OBJC member in struct:block_descriptor_big
61 const char *layout; // conditional on BLOCK_HAS_OBJC member in struct:block_descriptor_small
73 struct block_layout_abi *layout = (struct block_layout_abi *)block; local
74 if ((layout->flags & BLOCK_HAS_OBJC_TYPE) != BLOCK_HAS_OBJC_TYPE) return 0;
75 if (layout->flags & BLOCK_HAS_COPY_DISPOSE)
76 return layout->descriptor->signature;
78 return ((struct block_descriptor_small *)layout->descriptor)->signature;
82 struct block_layout_abi *layout = (struct block_layout_abi *)block; local
84 return (layout->flags & want) == want;
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_texture.h45 /** Per-tile layout mode */
48 LP_TEX_LAYOUT_NONE = 0, /**< no layout for the tile data yet */
49 LP_TEX_LAYOUT_TILED, /**< the tile data is in tiled layout */
50 LP_TEX_LAYOUT_LINEAR, /**< the tile data is in linear layout */
64 * linear layout (for texture sampling) and another in a tiled layout (for
82 * The former are tiled and have per-tile layout flags.
115 /** array [level][face or slice][tile_y][tile_x] of layout values) */
116 enum lp_texture_layout *layout[LP_MAX_TEXTURE_LEVELS]; member in struct:llvmpipe_resource
178 enum lp_texture_layout layout);
[all...]
/external/skia/include/core/
H A DSkDeviceProperties.h10 * layout. If the orientation is horizontal, the layout is interpreted as
11 * left to right. It the orientation is vertical, the layout is
24 /** The layout of the pixel specifies its subpixel geometry.
72 Layout layout = fromOldLayout(SkFontLCDConfig::GetSubpixelOrder()); //kRGB_Layout local
73 Geometry ret = { SkToU8(orientation | layout) };
77 static Geometry Make(Orientation orientation, Layout layout) { argument
78 Geometry ret = { SkToU8(orientation | layout) };
96 * Can the layout of those channels be exploited? */
/external/chromium_org/ash/desktop_background/
H A Ddesktop_background_controller.cc77 return current_wallpaper_->layout();
82 WallpaperLayout layout) {
84 << " layout=" << layout;
86 if (WallpaperIsAlreadyLoaded(image, true /* compare_layouts */, layout)) {
92 new WallpaperResizer(image, GetMaxDisplaySizeInNative(), layout));
180 WallpaperLayout layout) const {
185 if (compare_layouts && layout != current_wallpaper_->layout())
81 SetWallpaperImage(const gfx::ImageSkia& image, WallpaperLayout layout) argument
/external/chromium_org/ash/
H A Dextended_desktop_unittest.cc38 DisplayLayout layout = local
40 layout.position = position;
42 SetLayoutForCurrentDisplays(layout);
/external/chromium_org/ash/shell/
H A Dwindow_type_launcher.cc34 #include "ui/views/layout/grid_layout.h"
183 void AddViewToLayout(views::GridLayout* layout, views::View* view) { argument
184 layout->StartRow(0, 0);
185 layout->AddView(view);
186 layout->AddPaddingRow(0, 5);
247 views::GridLayout* layout = new views::GridLayout(this); local
248 layout->SetInsets(5, 5, 5, 5);
249 SetLayoutManager(layout);
250 views::ColumnSet* column_set = layout->AddColumnSet(0);
257 AddViewToLayout(layout, create_button
[all...]
/external/chromium_org/ash/system/date/
H A Ddate_view.cc22 #include "ui/views/layout/box_layout.h"
23 #include "ui/views/layout/grid_layout.h"
241 // Calculate vertical clock layout labels.
276 views::GridLayout* layout = new views::GridLayout(this); local
277 SetLayoutManager(layout);
279 views::ColumnSet* columns = layout->AddColumnSet(kColumnId);
283 layout->AddPaddingRow(0, kTrayLabelItemVerticalPaddingVerticalAlignment);
284 layout->StartRow(0, kColumnId);
285 layout->AddView(vertical_label_hours_.get());
286 layout
[all...]
/external/chromium_org/ash/system/tray/
H A Dsystem_tray_bubble.cc19 #include "ui/views/layout/box_layout.h"
54 views::BoxLayout* layout = new views::BoxLayout( local
56 layout->set_main_axis_alignment(views::BoxLayout::MAIN_AXIS_ALIGNMENT_FILL);
57 SetLayoutManager(layout);
/external/chromium_org/ash/system/
H A Dtray_accessibility.cc26 #include "ui/views/layout/box_layout.h"
216 views::BoxLayout* layout = new local
221 layout->set_main_axis_alignment(views::BoxLayout::MAIN_AXIS_ALIGNMENT_FILL);
222 bottom_row->SetLayoutManager(layout);
/external/chromium_org/ash/system/user/
H A Daccounts_detailed_view.cc25 #include "ui/views/layout/box_layout.h"
26 #include "ui/views/layout/grid_layout.h"
160 // Configuring layout manager.
161 views::GridLayout* layout = new views::GridLayout(account_list_); local
162 account_list_->SetLayoutManager(layout);
164 layout->AddColumnSet(kPrimaryAccountColumnSetID);
172 layout->AddColumnSet(kSecondaryAccountColumnSetID);
188 layout->AddPaddingRow(0.0, kPaddingBetweenAccounts);
189 layout->StartRow(0.0, kPrimaryAccountColumnSetID);
196 layout
[all...]
/external/chromium_org/ash/wm/overview/
H A Dwindow_selector_item.cc19 #include "ui/views/layout/box_layout.h"
97 views::BoxLayout* layout = new views::BoxLayout(views::BoxLayout::kVertical, local
101 label->SetLayoutManager(layout);
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
H A DJavascriptAppModalDialog.java85 ViewGroup layout = (ViewGroup) inflater.inflate(R.layout.js_modal_dialog, null);
86 mSuppressCheckBox = (CheckBox) layout.findViewById(R.id.suppress_js_modal_dialogs);
87 mPromptTextView = (TextView) layout.findViewById(R.id.js_modal_dialog_prompt);
89 prepare(layout);
92 .setView(layout)
176 void prepare(final ViewGroup layout) { argument
178 layout.findViewById(R.id.suppress_js_modal_dialogs).setVisibility(
184 layout.findViewById(R.id.js_modal_dialog_scroll_view).setVisibility(View.GONE);
186 ((TextView) layout
276 prepare(ViewGroup layout) argument
[all...]
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/infobar/
H A DTranslateLanguagePanel.java68 public void createContent(Context context, InfoBarLayout layout) { argument
73 layout.setMessage(changeLanguage);
77 layout.setCustomContent(mSourceSpinner, mTargetSpinner);
80 layout.setButtons(context.getString(R.string.translate_button_done),
94 mSourceAdapter = new LanguageArrayAdapter(context, R.layout.translate_spinner,
96 mTargetAdapter = new LanguageArrayAdapter(context, R.layout.translate_spinner,
207 FrameLayout layout = new FrameLayout(getContext());
209 R.layout.infobar_text, null);
210 layout.addView(estimator);
223 R.layout
[all...]
/external/chromium_org/chrome/browser/chromeos/input_method/
H A Dmock_input_method_manager.cc121 const std::string& locale, const std::string& layout) {
183 const std::string& layout) const {
120 SetInputMethodLoginDefaultFromVPD( const std::string& locale, const std::string& layout) argument
/external/chromium_org/chrome/browser/chromeos/login/ui/
H A Dsimple_web_view_dialog.cc35 #include "ui/views/layout/grid_layout.h"
36 #include "ui/views/layout/layout_constants.h"
67 GridLayout* layout = new GridLayout(this); local
68 SetLayoutManager(layout);
71 views::ColumnSet* column_set = layout->AddColumnSet(0);
88 layout->StartRow(0, 0);
89 layout->AddView(back);
90 layout->AddView(forward);
91 layout->AddView(reload);
92 layout
207 GridLayout* layout = new GridLayout(this); local
[all...]
/external/chromium_org/chrome/browser/chromeos/login/users/wallpaper/
H A Dwallpaper_manager.h41 ash::WallpaperLayout layout; member in struct:chromeos::WallpaperInfo
45 return (file == other.file) && (layout == other.layout) &&
145 // SetCustomWallpaper(user_wallpaper, layout);
203 // |preferred_height| while respecting the |layout| choice. |output_skia| is
206 ash::WallpaperLayout layout,
213 // |preferred_height| while respecting the |layout| choice and saves the
218 ash::WallpaperLayout layout,
267 ash::WallpaperLayout layout,
305 ash::WallpaperLayout layout,
[all...]
/external/chromium_org/chrome/browser/chromeos/options/
H A Dwimax_config_view.cc36 #include "ui/views/layout/grid_layout.h"
37 #include "ui/views/layout/layout_constants.h"
214 views::GridLayout* layout = views::GridLayout::CreatePanel(this); local
215 SetLayoutManager(layout);
218 views::ColumnSet* column_set = layout->AddColumnSet(column_view_set_id);
234 layout->StartRow(0, column_view_set_id);
235 layout->AddView(new views::Label(l10n_util::GetStringUTF16(
239 layout->AddView(label);
240 layout->AddPaddingRow(0, views::kRelatedControlVerticalSpacing);
243 layout
[all...]
/external/chromium_org/chrome/browser/extensions/api/system_display/
H A Ddisplay_info_provider_chromeos.cc73 // The layout consists of two values:
81 // point belongs. If the |rectangle| in the calculated layout does not share a
84 // over the |reference| top bound, it will be set to TOP) and the layout is
161 // Updates the display layout for the target display in reference to the primary
167 ash::DisplayLayout layout = GetLayoutForRectangles(primary_display_bounds, local
170 SetLayoutForCurrentDisplays(layout);
/external/chromium_org/chrome/browser/first_run/
H A Dtry_chrome_dialog_view.cc32 #include "ui/views/layout/grid_layout.h"
33 #include "ui/views/layout/layout_constants.h"
99 views::GridLayout* layout = views::GridLayout::CreatePanel(root_view); local
100 root_view->SetLayoutManager(layout);
104 columns = layout->AddColumnSet(0);
116 columns = layout->AddColumnSet(1);
123 columns = layout->AddColumnSet(2);
130 columns = layout->AddColumnSet(3);
139 columns = layout->AddColumnSet(4);
146 columns = layout
[all...]
/external/chromium_org/chrome/browser/ui/views/bookmarks/
H A Dbookmark_bubble_view.cc32 #include "ui/views/layout/grid_layout.h"
33 #include "ui/views/layout/layout_constants.h"
171 GridLayout* layout = new GridLayout(this); local
172 SetLayoutManager(layout);
174 // Column sets used in the layout of the bubble.
181 ColumnSet* cs = layout->AddColumnSet(TITLE_COLUMN_SET_ID);
187 // The column layout used for middle and bottom rows.
188 cs = layout->AddColumnSet(CONTENT_COLUMN_SET_ID);
205 layout->StartRow(0, TITLE_COLUMN_SET_ID);
206 layout
[all...]
/external/chromium_org/chrome/browser/ui/views/
H A Dedit_search_engine_dialog.cc24 #include "ui/views/layout/grid_layout.h"
25 #include "ui/views/layout/layout_constants.h"
152 GridLayout* layout = GridLayout::CreatePanel(this); local
153 SetLayoutManager(layout);
155 // Define the structure of the layout.
158 views::ColumnSet* column_set = layout->AddColumnSet(0);
168 column_set = layout->AddColumnSet(1);
179 column_set = layout->AddColumnSet(2);
184 layout->StartRow(0, 1);
185 layout
[all...]
/external/chromium_org/chrome/browser/ui/views/extensions/
H A Dmedia_galleries_dialog_views.cc24 #include "ui/views/layout/box_layout.h"
25 #include "ui/views/layout/grid_layout.h"
26 #include "ui/views/layout/layout_constants.h"
91 // Outer dialog layout.
97 views::GridLayout* layout = views::GridLayout::CreatePanel(contents_); local
98 contents_->SetLayoutManager(layout);
101 views::ColumnSet* columns = layout->AddColumnSet(column_set_id);
113 layout->StartRow(0, column_set_id);
114 layout->AddView(
118 layout
[all...]
/external/chromium_org/chrome/browser/ui/views/frame/
H A Dbrowser_view_layout_unittest.cc27 void set_download_shelf_needs_layout(bool layout) { argument
28 download_shelf_needs_layout_ = layout;
143 BrowserViewLayout* layout() { return layout_.get(); } function in class:BrowserViewLayoutTest
219 EXPECT_TRUE(layout()->browser());
220 EXPECT_TRUE(layout()->GetWebContentsModalDialogHost());
221 EXPECT_FALSE(layout()->InfobarVisible());
224 // Test the core layout functions.
230 layout()->Layout(root_view());
241 layout()->Layout(root_view());
254 layout()
[all...]
/external/chromium_org/chrome/browser/ui/views/passwords/
H A Dmanage_password_item_view.cc15 #include "ui/views/layout/fill_layout.h"
16 #include "ui/views/layout/grid_layout.h"
17 #include "ui/views/layout/layout_constants.h"
53 void BuildColumnSet(views::GridLayout* layout, int column_set_id) { argument
54 views::ColumnSet* column_set = layout->AddColumnSet(column_set_id);
109 views::GridLayout* layout = new views::GridLayout(this); local
110 SetLayoutManager(layout);
112 BuildColumnSet(layout, TWO_COLUMN_SET);
113 layout->StartRowWithPadding(
115 layout
126 views::GridLayout* layout = new views::GridLayout(this); local
159 views::GridLayout* layout = new views::GridLayout(this); local
201 views::FillLayout* layout = new views::FillLayout(); local
[all...]
H A Dmanage_passwords_bubble_view.cc27 #include "ui/views/layout/fill_layout.h"
28 #include "ui/views/layout/grid_layout.h"
29 #include "ui/views/layout/layout_constants.h"
56 // to |layout|.
57 void BuildColumnSet(views::GridLayout* layout, ColumnSetType type) { argument
58 views::ColumnSet* column_set = layout->AddColumnSet(type);
105 // Given a layout and a model, add an appropriate title using a
107 void AddTitleRow(views::GridLayout* layout, ManagePasswordsBubbleModel* model) { argument
114 // Add the title to the layout with appropriate padding.
115 layout
147 views::GridLayout* layout = new views::GridLayout(this); local
216 views::GridLayout* layout = new views::GridLayout(this); local
288 views::GridLayout* layout = new views::GridLayout(this); local
375 views::GridLayout* layout = new views::GridLayout(this); local
525 views::FillLayout* layout = new views::FillLayout(); local
[all...]

Completed in 643 milliseconds

1234567891011>>