Searched defs:layout (Results 76 - 100 of 363) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/progs/d3d11tri/
H A Dd3d11tri.cpp56 ID3D11InputLayout* layout; member in struct:d3d11tri
71 ensure(dev->CreateInputLayout(elements, sizeof(elements) / sizeof(elements[0]), g_vs, sizeof(g_vs), &layout));
105 ctx->IASetInputLayout(layout);
/external/chromium_org/third_party/mesa/src/src/mesa/program/
H A Dprog_parameter_layout.c26 * \brief Helper functions to layout storage for program parameters
119 struct gl_program_parameter_list *layout; local
123 layout =
136 copy_indirect_accessed_array(state->prog->Parameters, layout,
141 _mesa_free_parameter_list(layout);
190 _mesa_add_unnamed_constant(layout, v, p->Size, & swizzle);
199 _mesa_add_state_reference(layout, p->StateIndexes);
211 layout->StateFlags = state->prog->Parameters->StateFlags;
213 state->prog->Parameters = layout;
/external/chromium_org/ui/views/examples/
H A Dmultiline_example.cc14 #include "ui/views/layout/grid_layout.h"
119 GridLayout* layout = new GridLayout(container); local
120 container->SetLayoutManager(layout);
122 ColumnSet* column_set = layout->AddColumnSet(0);
128 layout->StartRow(0, 0);
129 layout->AddView(new Label(ASCIIToUTF16("gfx::RenderText:")));
130 layout->AddView(render_text_view_);
132 layout->StartRow(0, 0);
133 layout->AddView(label_checkbox_);
134 layout
[all...]
H A Dscroll_view_example.cc12 #include "ui/views/layout/grid_layout.h"
70 GridLayout* layout = new GridLayout(container); local
71 container->SetLayoutManager(layout);
74 ColumnSet* column_set = layout->AddColumnSet(0);
77 layout->StartRow(1, 0);
78 layout->AddView(scroll_view_);
81 column_set = layout->AddColumnSet(1);
86 layout->StartRow(0, 1);
87 layout->AddView(wide_);
88 layout
[all...]
H A Dsingle_split_view_example.cc9 #include "ui/views/layout/grid_layout.h"
75 GridLayout* layout = new GridLayout(container); local
76 container->SetLayoutManager(layout);
78 ColumnSet* column_set = layout->AddColumnSet(0);
81 layout->StartRow(1, 0);
82 layout->AddView(single_split_view_);
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/
H A DGridLayoutFactory.java13 import org.eclipse.swt.layout.GridLayout;
30 private GridLayoutFactory(Composite composite, GridLayout layout) { argument
31 m_layout = layout;
40 Layout layout = composite.getLayout();
41 if (layout instanceof GridLayout) {
42 return new GridLayoutFactory(composite, (GridLayout) layout);
61 * Specifies whether all columns in the layout will be forced to have the same width.
/external/llvm/utils/TableGen/
H A DSequenceToOffsetTable.h29 /// Compute the layout of a table that contains all the sequences, possibly by
55 // Entries in the final table, or 0 before layout was called.
67 /// This must be called before layout().
69 assert(Entries == 0 && "Cannot call add() after layout()");
86 /// layout - Computes the final table layout.
87 void layout() { function in class:llvm::SequenceToOffsetTable
88 assert(Entries == 0 && "Can only call layout() once");
100 assert(Entries && "Call layout() before get()");
112 assert(Entries && "Call layout() befor
[all...]
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_linkage.c118 util_semantic_layout_from_set(unsigned char *layout, const struct util_semantic_set *set, unsigned efficient_slots, unsigned num_slots) argument
124 memset(layout, 0xff, num_slots);
136 layout[i] = i;
141 layout[i - first] = i;
147 layout[idx++] = i;
/external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d10tri/
H A Dd3d10tri.cpp56 ID3D10InputLayout* layout; member in struct:d3d10tri
70 ensure(dev->CreateInputLayout(elements, sizeof(elements) / sizeof(elements[0]), g_vs, sizeof(g_vs), &layout));
103 ctx->IASetInputLayout(layout);
/external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11tri/
H A Dd3d11tri.cpp56 ID3D11InputLayout* layout; member in struct:d3d11tri
71 ensure(dev->CreateInputLayout(elements, sizeof(elements) / sizeof(elements[0]), g_vs, sizeof(g_vs), &layout));
105 ctx->IASetInputLayout(layout);
/external/mesa3d/src/mesa/program/
H A Dprog_parameter_layout.c26 * \brief Helper functions to layout storage for program parameters
119 struct gl_program_parameter_list *layout; local
123 layout =
136 copy_indirect_accessed_array(state->prog->Parameters, layout,
141 _mesa_free_parameter_list(layout);
190 _mesa_add_unnamed_constant(layout, v, p->Size, & swizzle);
199 _mesa_add_state_reference(layout, p->StateIndexes);
211 layout->StateFlags = state->prog->Parameters->StateFlags;
213 state->prog->Parameters = layout;
/external/chromium/chrome/browser/chromeos/login/
H A Dbase_login_display_host.cc43 // and the OEM layout information, and saves it to "Locale State".
47 std::string layout; local
49 // If the OEM layout information is provided, use it.
50 layout = oem_layout;
59 // input_method_ids[0] now contains the most popular keyboard layout
61 layout = input_method_ids[0];
65 if (!layout.empty()) {
67 prefs->SetString(prefs::kHardwareKeyboardLayout, layout);
185 // If kPreferredKeyboardLayout is not specified, use the hardware layout.
235 std::string layout local
237 << "keyboard layout " << layout; local
[all...]
H A Dcaptcha_view.cc23 #include "views/layout/grid_layout.h"
24 #include "views/layout/layout_constants.h"
158 views::GridLayout* layout = views::GridLayout::CreatePanel(this); local
159 SetLayoutManager(layout);
162 views::ColumnSet* column_set = layout->AddColumnSet(column_view_set_id);
165 layout->StartRow(0, column_view_set_id);
169 layout->AddView(label);
170 layout->AddPaddingRow(0, views::kRelatedControlVerticalSpacing);
172 layout->StartRow(0, column_view_set_id);
174 layout
[all...]
/external/chromium_org/ash/desktop_background/
H A Dwallpaper_resizer.cc28 // Resizes |orig_bitmap| to |target_size| using |layout| and stores the
32 WallpaperLayout layout,
46 switch (layout) {
104 WallpaperLayout layout)
109 layout_(layout),
116 WallpaperLayout layout)
120 layout_(layout),
30 Resize(SkBitmap orig_bitmap, const gfx::Size& target_size, WallpaperLayout layout, SkBitmap* resized_bitmap_out) argument
102 WallpaperResizer(int image_resource_id, const gfx::Size& target_size, WallpaperLayout layout) argument
114 WallpaperResizer(const gfx::ImageSkia& image, const gfx::Size& target_size, WallpaperLayout layout) argument
H A Dwallpaper_resizer_unittest.cc71 WallpaperLayout layout) {
73 resizer.reset(new WallpaperResizer(image, target_size, layout));
107 WallpaperLayout layout = layouts[i]; local
111 layout);
117 layout);
124 // STRETCH layout"
69 Resize(const gfx::ImageSkia& image, const gfx::Size& target_size, WallpaperLayout layout) argument
/external/chromium_org/ash/display/
H A Ddisplay_change_observer_chromeos.cc99 DisplayLayout layout = Shell::GetInstance()->display_manager()-> local
101 return layout.mirrored ?
H A Ddisplay_layout.cc114 DisplayLayout* layout) {
116 return converter.Convert(value, layout);
120 bool DisplayLayout::ConvertToValue(const DisplayLayout& layout, argument
126 const std::string position_str = GetStringFromPosition(layout.position);
128 dict_value->SetInteger(kOffsetKey, layout.offset);
129 dict_value->SetBoolean(kMirroredKey, layout.mirrored);
130 dict_value->SetString(kPrimaryIdKey, base::Int64ToString(layout.primary_id));
113 ConvertFromValue(const base::Value& value, DisplayLayout* layout) argument
/external/chromium_org/ash/system/chromeos/power/
H A Dpower_status_view.cc21 #include "ui/views/layout/box_layout.h"
22 #include "ui/views/layout/grid_layout.h"
70 views::BoxLayout* layout = local
73 SetLayoutManager(layout);
82 views::BoxLayout* layout = local
85 SetLayoutManager(layout);
/external/chromium_org/ash/system/tray/
H A Dtray_notification_view.cc16 #include "ui/views/layout/grid_layout.h"
33 views::GridLayout* layout = new views::GridLayout(this); local
34 SetLayoutManager(layout);
49 views::ColumnSet* columns = layout->AddColumnSet(0);
77 layout->AddPaddingRow(0, kTrayPopupPaddingBetweenItems);
78 layout->StartRow(0, 0);
79 layout->AddView(icon_);
80 layout->AddView(contents);
81 layout->AddView(close_button);
82 layout
[all...]
/external/chromium_org/chrome/browser/chromeos/extensions/
H A Dwallpaper_api.cc135 ash::WallpaperLayout layout = wallpaper_api_util::GetLayoutEnum( local
136 set_wallpaper::Params::Details::ToString(params_->details.layout));
140 layout,
/external/chromium_org/chrome/browser/chromeos/input_method/
H A Dinfolist_window_view.cc24 #include "ui/views/layout/box_layout.h"
25 #include "ui/views/layout/grid_layout.h"
179 views::BoxLayout* layout = new views::BoxLayout(views::BoxLayout::kVertical, local
181 SetLayoutManager(layout); // |this| owns |layout|.
214 views::BoxLayout* layout = new views::BoxLayout(views::BoxLayout::kVertical, local
216 // |infolist_area_| owns |layout|.
217 infolist_area_->SetLayoutManager(layout);
/external/chromium_org/chrome/browser/chromeos/login/
H A Dwallpaper_manager.h39 ash::WallpaperLayout layout; member in struct:chromeos::WallpaperInfo
43 return (file == other.file) && (layout == other.layout) &&
148 ash::WallpaperLayout layout,
158 ash::WallpaperLayout layout,
167 ash::WallpaperLayout layout,
192 ash::WallpaperLayout layout);
288 ash::WallpaperLayout layout,
308 ash::WallpaperLayout layout,
/external/chromium_org/chrome/browser/chromeos/ui/
H A Didle_logout_dialog_view.cc23 #include "ui/views/layout/grid_layout.h"
24 #include "ui/views/layout/layout_constants.h"
137 views::GridLayout* layout = views::GridLayout::CreatePanel(this); local
138 SetLayoutManager(layout);
140 views::ColumnSet* column_set = layout->AddColumnSet(0);
143 layout->StartRow(0, 0);
144 layout->AddPaddingRow(0, views::kRelatedControlHorizontalSpacing);
145 layout->StartRow(0, 0);
146 layout->AddView(restart_label_);
147 layout
[all...]
/external/chromium_org/chrome/browser/notifications/
H A Dballoon_collection_impl.h34 // a layout, and monitors for balloons being closed, which it reports
86 // Calculates layout values for the balloons including
129 // Returns the origin for the sequence of balloons depending on layout.
140 // Return a offscreen location which is offscreen for this layout,
144 // Returns true if the layout requires offsetting for keeping the close
201 Layout& layout() { return layout_; } function in class:BalloonCollectionImpl
219 // The layout parameters for balloons in this collection.
/external/chromium_org/chrome/browser/ui/views/accessibility/
H A Dinvert_bubble_view.cc21 #include "ui/views/layout/grid_layout.h"
22 #include "ui/views/layout/layout_constants.h"
97 views::GridLayout* layout = views::GridLayout::CreatePanel(this); local
98 SetLayoutManager(layout);
100 views::ColumnSet* columns = layout->AddColumnSet(0);
107 layout->StartRow(0, 0);
108 layout->AddView(title, 4, 1);
109 layout->StartRowWithPadding(0, 0, 0,
111 layout->AddView(high_contrast_);
112 layout
[all...]

Completed in 3488 milliseconds

1234567891011>>