Searched defs:layout (Results 201 - 225 of 363) sorted by relevance

1234567891011>>

/external/chromium_org/ash/
H A Dextended_desktop_unittest.cc38 DisplayLayout layout = local
40 layout.position = position;
42 SetLayoutForCurrentDisplays(layout);
/external/chromium_org/ash/system/chromeos/network/
H A Dtray_sms.cc28 #include "ui/views/layout/box_layout.h"
29 #include "ui/views/layout/fill_layout.h"
30 #include "ui/views/layout/grid_layout.h"
135 views::GridLayout* layout = new views::GridLayout(this); local
136 SetLayoutManager(layout);
138 views::ColumnSet* columns = layout->AddColumnSet(0);
153 layout->AddPaddingRow(0, kPaddingVertical);
154 layout->StartRow(0, 0);
155 layout->AddView(number_label_);
156 layout
[all...]
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/infobar/
H A DInfoBar.java228 public void createContent(InfoBarLayout layout) { argument
H A DTranslateInfoBar.java172 public void createContent(InfoBarLayout layout) { argument
178 mSubPanel.createContent(getContext(), layout);
186 checkBox.createContent(getContext(), layout);
189 super.createContent(layout);
/external/chromium_org/chrome/browser/chromeos/display/
H A Ddisplay_preferences.cc88 ash::DisplayLayout layout; local
89 if (!ash::DisplayLayout::ConvertFromValue(it.value(), &layout)) {
105 layout_store->RegisterLayoutForDisplayIdPair(id1, id2, layout);
276 void SetCurrentDisplayLayout(const ash::DisplayLayout& layout) { argument
277 GetDisplayManager()->SetLayoutForCurrentDisplays(layout);
295 // Stores the display layout for given display pairs.
298 const ash::DisplayLayout& layout) {
299 StoreDisplayLayoutPref(std::make_pair(id1, id2), layout); local
296 StoreDisplayLayoutPrefForTest(int64 id1, int64 id2, const ash::DisplayLayout& layout) argument
/external/chromium_org/chrome/browser/chromeos/input_method/
H A Dinput_method_util.cc125 const char* layout; member in struct:__anon4618::__anon4621
403 // Display the keyboard layout name when using a keyboard layout.
452 // We don't show language here. Name of keyboard layout or input method
456 // keyboard layouts and share the same layout of keyboard (Belgian). We need
457 // to show explicitly the language for the layout. For Arabic, Amharic, and
528 // First, add the current keyboard layout (one used on the login screen).
536 kDefaultInputMethodRecommendation[i].layout == current_layout) {
559 // Check if there is one that matches the current keyboard layout, but
561 // multiple keyboard layout choice
[all...]
/external/chromium_org/chrome/browser/resources/file_manager/foreground/js/photo/
H A Dmosaic_mode.js91 * Default layout delay in ms.
162 * keep the layout up to date.
294 this.layout();
334 Mosaic.prototype.layout = function() {
345 break; // Next layout will try to restart from here.
352 * Schedule the layout.
360 this.layout();
667 * @param {Mosaic.Layout} layoutModel The layout model to use.
710 * Mosaic layout.
751 * Layout mode: do not commit layout t
[all...]
/external/chromium_org/chrome/browser/ui/views/
H A Dabout_ipc_dialog.cc39 #include "ui/views/layout/grid_layout.h"
40 #include "ui/views/layout/layout_constants.h"
218 views::GridLayout* layout = views::GridLayout::CreatePanel(this); local
219 SetLayoutManager(layout);
228 views::ColumnSet* column_set = layout->AddColumnSet(first_column_set);
237 column_set = layout->AddColumnSet(table_column_set);
241 layout->StartRow(0, first_column_set);
242 layout->AddView(track_toggle_);
243 layout->AddView(clear_button_);
244 layout
[all...]
H A Dcollected_cookies_views.cc46 #include "ui/views/layout/box_layout.h"
47 #include "ui/views/layout/grid_layout.h"
48 #include "ui/views/layout/layout_constants.h"
146 // Initialize contents and layout.
322 GridLayout* layout = GridLayout::CreatePanel(this);
323 SetLayoutManager(layout);
326 views::ColumnSet* column_set = layout->AddColumnSet(single_column_layout_id);
330 layout->StartRow(0, single_column_layout_id);
332 layout->SetInsets(gfx::Insets(kTabbedPaneTopPadding, 0, 0, 0));
334 layout
386 GridLayout* layout = GridLayout::CreatePanel(pane); local
451 GridLayout* layout = GridLayout::CreatePanel(pane); local
[all...]
H A Dfullscreen_exit_bubble_views.cc28 #include "ui/views/layout/box_layout.h"
29 #include "ui/views/layout/grid_layout.h"
173 views::GridLayout* layout = new views::GridLayout(this); local
174 views::ColumnSet* columns = layout->AddColumnSet(0);
185 layout->StartRow(0, 0);
186 layout->AddView(message_label_);
187 layout->AddView(button_view_);
188 layout->AddView(mouse_lock_exit_instruction_);
189 layout->AddView(link_);
193 layout
[all...]
/external/chromium_org/chrome/browser/ui/views/extensions/
H A Dmedia_galleries_dialog_views.cc25 #include "ui/views/layout/box_layout.h"
26 #include "ui/views/layout/grid_layout.h"
27 #include "ui/views/layout/layout_constants.h"
99 // Outer dialog layout.
103 views::GridLayout* layout = views::GridLayout::CreatePanel(contents_); local
104 contents_->SetLayoutManager(layout);
107 views::ColumnSet* columns = layout->AddColumnSet(column_set_id);
119 layout->StartRow(0, column_set_id);
120 layout->AddView(
124 layout
[all...]
/external/chromium_org/chrome/browser/ui/webui/print_preview/
H A Dprint_preview_ui.cc490 base::DictionaryValue layout; local
491 layout.SetDouble(printing::kSettingMarginTop, page_layout.margin_top);
492 layout.SetDouble(printing::kSettingMarginLeft, page_layout.margin_left);
493 layout.SetDouble(printing::kSettingMarginBottom, page_layout.margin_bottom);
494 layout.SetDouble(printing::kSettingMarginRight, page_layout.margin_right);
495 layout.SetDouble(printing::kSettingContentWidth, page_layout.content_width);
496 layout.SetDouble(printing::kSettingContentHeight, page_layout.content_height);
497 layout.SetInteger(printing::kSettingPrintableAreaX, printable_area.x());
498 layout.SetInteger(printing::kSettingPrintableAreaY, printable_area.y());
499 layout
[all...]
/external/chromium_org/content/public/android/java/resource_map/org/chromium/content/
H A DR.java59 public static final class layout { class in class:R
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/
H A DSliderThumbElement.cpp113 virtual void layout() OVERRIDE;
142 void RenderSliderContainer::layout() function in class:WebCore::RenderSliderContainer
161 // Force a layout to reset the position of the thumb so the code below doesn't move the thumb to the wrong place.
166 RenderFlexibleBox::layout();
213 // Since the code to calculate position is in the RenderSliderThumb layout
215 // renderer directly to trigger layout.
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DAutoTableLayout.cpp475 void AutoTableLayout::layout() function in class:WebCore::AutoTableLayout
477 // table layout based on the values collected in the layout structure.
486 // FIXME: Table layout shouldn't modify our table structure (but does due to columns and column-groups).
H A DRenderFrameSet.cpp346 // now we have the final layout, distribute the delta over it
440 void RenderFrameSet::layout() function in class:WebCore::RenderFrameSet
472 RenderBox::layout();
521 child->layout();
H A DRenderListItem.cpp60 // avoid an unnecessary layout in setStyle below.
315 void RenderListItem::layout() function in class:WebCore::RenderListItem
321 RenderBlockFlow::layout();
350 // FIXME: Need to account for relative positioning in the layout overflow.
H A DRenderTextControlSingleLine.cpp96 void RenderTextControlSingleLine::layout() function in class:WebCore::RenderTextControlSingleLine
101 // FIXME: We should remove the height-related hacks in layout() and
160 // If we need another layout pass, we have changed one of children's height so we need to relayout them.
205 // The placeholder gets layout last, after the parent text control and its other children,
240 // We may have set the width and the height in the old style in layout().
241 // Reset them now to avoid getting a spurious layout hint.
H A DRenderWidget.cpp188 // If we've already received a layout, apply the calculated space to the
209 void RenderWidget::layout() function in class:WebCore::RenderWidget
333 // if the frame bounds got changed, or if view needs layout (possibly indicating
334 // content size is wrong) we have to do a layout to set the right widget size
339 frameView->layout();
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DRenderSVGRoot.cpp194 void RenderSVGRoot::layout() function in class:WebCore::RenderSVGRoot
H A DRenderSVGShape.cpp141 void RenderSVGShape::layout() function in class:WebCore::RenderSVGShape
162 // Invalidate all resources of this client if our layout changed.
H A DRenderSVGText.cpp189 // Detect changes in layout attributes and only measure those text parts that have changed!
285 // passes on to the base class, which removes us from the render tree. At this point we can update the layout attributes.
300 // nor the layout attributes cached in the leaf #text renderers.
344 void RenderSVGText::layout() function in class:WebCore::RenderSVGText
358 // When laying out initially, collect all layout attributes, build the character data map,
370 // When the x/y/dx/dy/rotate lists change, recompute the layout attributes, and eventually
382 // If the root layout size changed (eg. window size changes) or the transform to the root
408 // FIXME: We need to find a way to only layout the child boxes, if needed.
419 // Invalidate all resources of this client if our layout changed.
/external/chromium_org/third_party/WebKit/public/web/
H A DWebWidget.h85 // Called to layout the WebWidget. This MUST be called before Paint,
87 virtual void layout() { } function in class:blink::WebWidget
115 // multiple times once layout has been called, assuming no other
117 // processed, it should be assumed that another call to layout is
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/vl/
H A Dvl_zscan.c345 vl_zscan_layout(struct pipe_context *pipe, const int layout[64], unsigned blocks_per_line) argument
365 assert(pipe && layout && blocks_per_line);
368 patched_layout[layout[i]] = i;
525 pipe_sampler_view_reference(&buffer->layout, NULL);
531 vl_zscan_set_layout(struct vl_zscan_buffer *buffer, struct pipe_sampler_view *layout) argument
534 assert(layout);
536 pipe_sampler_view_reference(&buffer->layout, layout);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/
H A Dr300_blit.c441 return desc->layout == UTIL_FORMAT_LAYOUT_PLAIN ||
442 desc->layout == UTIL_FORMAT_LAYOUT_S3TC ||
443 desc->layout == UTIL_FORMAT_LAYOUT_RGTC;
463 unsigned layout; local
483 layout = util_format_description(dst_templ.format)->layout;
486 if (layout == UTIL_FORMAT_LAYOUT_PLAIN &&
515 if (layout == UTIL_FORMAT_LAYOUT_S3TC ||
516 layout == UTIL_FORMAT_LAYOUT_RGTC) {

Completed in 1166 milliseconds

1234567891011>>