HomeSort by relevance Sort by last modified time
    Searched refs:layout_ (Results 1 - 25 of 41) sorted by null

1 2

  /external/chromium_org/chrome/browser/ui/gtk/notifications/
balloon_collection_gtk.cc 16 gfx::Size size(layout_.min_balloon_width(), layout_.min_balloon_height());
76 layout_.set_placement(Layout::VERTICALLY_FROM_TOP_RIGHT);
78 layout_.set_placement(Layout::VERTICALLY_FROM_TOP_LEFT);
80 layout_.set_placement(Layout::VERTICALLY_FROM_BOTTOM_LEFT);
82 layout_.set_placement(Layout::VERTICALLY_FROM_BOTTOM_RIGHT);
86 layout_.ComputeOffsetToMoveAbovePanels();
  /external/chromium_org/ui/views/layout/
box_layout_unittest.cc 22 scoped_ptr<BoxLayout> layout_; member in class:views::__anon15142::BoxLayoutTest
28 layout_.reset(new BoxLayout(BoxLayout::kHorizontal, 10, 10, 20));
29 EXPECT_EQ(gfx::Size(20, 20), layout_->GetPreferredSize(host_.get()));
33 layout_.reset(new BoxLayout(BoxLayout::kHorizontal, 0, 0, 0));
38 EXPECT_EQ(gfx::Size(20, 20), layout_->GetPreferredSize(host_.get()));
40 layout_->Layout(host_.get());
46 layout_.reset(new BoxLayout(BoxLayout::kVertical, 0, 0, 0));
51 EXPECT_EQ(gfx::Size(20, 20), layout_->GetPreferredSize(host_.get()));
53 layout_->Layout(host_.get());
59 layout_.reset(new BoxLayout(BoxLayout::kHorizontal, 7, 7, 8))
    [all...]
  /external/chromium_org/chrome/test/chromedriver/
test_util.h 28 HKL layout_; member in class:RestoreKeyboardLayoutOnDestruct
30 base::ScopedCFTypeRef<TISInputSourceRef> layout_; member in class:RestoreKeyboardLayoutOnDestruct
test_util.cc 12 layout_ = GetKeyboardLayout(NULL);
14 layout_.reset(TISCopyCurrentKeyboardInputSource());
22 ActivateKeyboardLayout(layout_, 0);
24 TISSelectInputSource(layout_);
  /external/chromium/chrome/browser/notifications/
balloon_collection_linux.cc 21 gfx::Size size(layout_.min_balloon_width(), layout_.min_balloon_height());
71 layout_.set_placement(Layout::VERTICALLY_FROM_TOP_RIGHT);
73 layout_.set_placement(Layout::VERTICALLY_FROM_TOP_LEFT);
75 layout_.set_placement(Layout::VERTICALLY_FROM_BOTTOM_LEFT);
77 layout_.set_placement(Layout::VERTICALLY_FROM_BOTTOM_RIGHT);
balloon_collection_win.cc 15 gfx::Size size(layout_.min_balloon_width(), layout_.min_balloon_height());
60 layout_.set_placement(Layout::VERTICALLY_FROM_TOP_RIGHT);
62 layout_.set_placement(Layout::VERTICALLY_FROM_TOP_LEFT);
64 layout_.set_placement(Layout::VERTICALLY_FROM_BOTTOM_LEFT);
66 layout_.set_placement(Layout::VERTICALLY_FROM_BOTTOM_RIGHT);
balloon_collection_impl.cc 50 new_balloon->set_min_scrollbar_size(gfx::Size(1 + layout_.max_balloon_width(),
51 layout_.max_balloon_height()));
52 new_balloon->SetPosition(layout_.OffScreenLocation(), false);
56 if (count > 0 && layout_.RequiresOffsets())
90 layout_.GetMaxLinearSize(&max_balloon_size, &total_size);
105 layout_.RefreshSystemMetrics();
115 if (layout_.RequiresOffsets()) {
158 layout_.RefreshSystemMetrics();
159 gfx::Point origin = layout_.GetLayoutOrigin();
163 gfx::Point upper_left = layout_.NextPosition((*it)->GetViewSize(), &origin)
    [all...]
  /external/chromium_org/chrome/browser/ui/views/notifications/
balloon_collection_views.cc 18 gfx::Size size(layout_.min_balloon_width(), layout_.min_balloon_height());
98 layout_.set_placement(Layout::VERTICALLY_FROM_TOP_RIGHT);
100 layout_.set_placement(Layout::VERTICALLY_FROM_TOP_LEFT);
102 layout_.set_placement(Layout::VERTICALLY_FROM_BOTTOM_LEFT);
104 layout_.set_placement(Layout::VERTICALLY_FROM_BOTTOM_RIGHT);
108 layout_.ComputeOffsetToMoveAbovePanels();
  /external/chromium_org/chrome/browser/ui/cocoa/autofill/
layout_view.h 17 scoped_ptr<SimpleGridLayout> layout_; variable
  /external/chromium_org/chrome/browser/ui/views/frame/
opaque_browser_frame_view_linux.h 34 OpaqueBrowserFrameViewLayout* layout_; member in class:OpaqueBrowserFrameViewLinux
opaque_browser_frame_view_linux.cc 18 layout_(layout) {
48 layout_->SetButtonOrdering(leading_buttons, trailing_buttons);
  /external/chromium_org/chrome/browser/chromeos/options/
vpn_config_view.cc 235 layout_(NULL),
495 layout_ = views::GridLayout::CreatePanel(this);
496 SetLayoutManager(layout_);
501 views::ColumnSet* column_set = layout_->AddColumnSet(0);
527 layout_->StartRow(0, 0);
531 layout_->AddView(server_label);
534 layout_->AddView(server_textfield_);
535 layout_->AddPaddingRow(0, views::kRelatedControlVerticalSpacing);
542 layout_->StartRow(0, 0);
543 layout_->AddView(new views::Label(l10n_util::GetStringUTF16
    [all...]
  /external/ceres-solver/internal/ceres/
block_random_access_sparse_matrix.cc 91 layout_[IntPairToLong(it->first, it->second)] =
105 layout_[IntPairToLong(row_block_id, col_block_id)]->values - values;
121 for (LayoutType::iterator it = layout_.begin();
122 it != layout_.end();
135 layout_.find(IntPairToLong(row_block_id, col_block_id));
136 if (it == layout_.end()) {
block_random_access_crs_matrix.cc 94 // Add entries to layout_ for all the blocks for this row.
100 layout_[IntPairToLong(it->first, it->second)] =
137 for (LayoutType::iterator it = layout_.begin();
138 it != layout_.end();
151 layout_.find(IntPairToLong(row_block_id, col_block_id));
152 if (it == layout_.end()) {
block_random_access_crs_matrix.h 98 LayoutType layout_; member in class:ceres::internal::BlockRandomAccessCRSMatrix
block_random_access_sparse_matrix.h 98 LayoutType layout_; member in class:ceres::internal::BlockRandomAccessSparseMatrix
  /external/chromium_org/chrome/browser/ui/views/tabs/
stacked_tab_strip_layout_unittest.cc 49 layout_.reset(new StackedTabStripLayout(
54 layout_->Reset(data.initial_x, data.width, data.mini_tab_count,
58 layout_->Reset(data.initial_x, data.width, data.mini_tab_count,
131 scoped_ptr<StackedTabStripLayout> layout_; member in class:StackedTabStripLayoutTest
257 layout_->DragActiveTab(test_data[i].delta);
281 layout_->SizeToFit();
339 layout_->AddTab(test_data[i].add_index, add_types,
392 layout_->RemoveTab(test_data[i].remove_index, test_data[i].x_after_remove,
425 layout_->SetWidth(test_data[i].new_width);
446 layout_->SetActiveIndex(test_data[i].new_index)
    [all...]
  /external/chromium_org/ash/desktop_background/
wallpaper_resizer.h 41 WallpaperLayout layout() const { return layout_; }
68 WallpaperLayout layout_; member in class:ash::WallpaperResizer
wallpaper_resizer.cc 109 layout_(layout),
120 layout_(layout),
134 layout_, resized_bitmap),
  /external/chromium_org/ui/gfx/
render_text_pango.cc 71 : layout_(NULL),
85 pango_layout_get_pixel_size(layout_, &width, &height);
109 pango_layout_xy_to_index(layout_, p.x() * PANGO_SCALE, p.y() * PANGO_SCALE,
142 return PANGO_PIXELS(pango_layout_get_baseline(layout_));
215 pango_layout_index_to_pos(layout_, TextIndexToLayoutIndex(index), &pos);
250 DCHECK(layout_);
259 DCHECK(layout_);
285 if (layout_) {
286 // TODO(msw): Keep |layout_| across text changes, etc.; it can be re-used.
287 g_object_unref(layout_);
311 CHECK_NE(static_cast<PangoLayout*>(NULL), layout_); local
    [all...]
  /external/chromium_org/chrome/browser/ui/gtk/autofill/
autofill_popup_view_gtk.cc 66 layout_ = gtk_widget_create_pango_layout(window_, NULL);
70 g_object_unref(layout_);
174 pango_layout_set_width(layout_, window_->allocation.width * PANGO_SCALE);
175 pango_layout_set_height(layout_, window_->allocation.height * PANGO_SCALE);
188 pango_layout_set_attributes(layout_, attrs); // Ref taken.
192 pango_layout_set_font_description(layout_, font_description.get());
194 gtk_util::SetLayoutText(layout_, text);
198 pango_layout_set_width(layout_, -1);
242 pango_cairo_show_layout(cairo_context, layout_);
286 pango_cairo_show_layout(cairo_context, layout_);
    [all...]
autofill_popup_view_gtk.h 93 PangoLayout* layout_; // Strong reference. member in class:autofill::AutofillPopupViewGtk
  /external/chromium_org/chrome/browser/notifications/
balloon_collection_impl.cc 68 new_balloon->set_min_scrollbar_size(gfx::Size(1 + layout_.max_balloon_width(),
69 layout_.max_balloon_height()));
70 new_balloon->SetPosition(layout_.OffScreenLocation(), false);
74 if (count > 0 && layout_.RequiresOffsets())
122 layout_.GetMaxLinearSize(&max_balloon_size, &total_size);
137 layout_.RefreshSystemMetrics();
147 if (layout_.RequiresOffsets()) {
195 layout_.enable_computing_panel_offset();
196 if (layout_.ComputeOffsetToMoveAbovePanels())
208 layout_.RefreshSystemMetrics()
    [all...]
  /external/chromium_org/chrome/browser/ui/gtk/omnibox/
omnibox_popup_view_gtk.cc 170 layout_(NULL),
194 layout_ = gtk_widget_create_pango_layout(window_, NULL);
196 pango_layout_set_auto_dir(layout_, FALSE);
198 pango_layout_set_ellipsize(layout_, PANGO_ELLIPSIZE_END);
236 // layout_ may be NULL in unit tests.
237 if (layout_) {
238 g_object_unref(layout_);
642 pango_layout_set_height(layout_, kHeightPerResult * PANGO_SCALE);
679 pango_layout_set_width(layout_, allocated_content_width * PANGO_SCALE);
682 SetupLayoutForMatch(layout_, match->contents, match->contents_class
    [all...]
  /external/chromium/chrome/browser/autocomplete/
autocomplete_popup_view_gtk.cc 279 layout_(NULL),
295 layout_ = gtk_widget_create_pango_layout(window_, NULL);
297 pango_layout_set_auto_dir(layout_, FALSE);
299 pango_layout_set_ellipsize(layout_, PANGO_ELLIPSIZE_END);
337 g_object_unref(layout_);
602 pango_layout_set_height(layout_, kHeightPerResult * PANGO_SCALE);
636 pango_layout_set_width(layout_, allocated_content_width * PANGO_SCALE);
639 SetupLayoutForMatch(layout_, match.contents, match.contents_class,
649 pango_layout_get_size(layout_,
662 content_y, layout_);
    [all...]

Completed in 390 milliseconds

1 2