Searched refs:layout_ (Results 1 - 25 of 27) sorted by relevance

12

/external/chromium_org/chrome/test/chromedriver/
H A Dtest_util.h28 HKL layout_; member in class:RestoreKeyboardLayoutOnDestruct
30 base::ScopedCFTypeRef<TISInputSourceRef> layout_; member in class:RestoreKeyboardLayoutOnDestruct
H A Dtest_util.cc12 layout_ = GetKeyboardLayout(NULL);
14 layout_.reset(TISCopyCurrentKeyboardInputSource());
22 ActivateKeyboardLayout(layout_, 0);
24 TISSelectInputSource(layout_);
/external/ceres-solver/internal/ceres/
H A Dblock_random_access_diagonal_matrix.cc74 layout_.push_back(new CellInfo(values + pos));
88 STLDeleteContainerPointers(layout_.begin(), layout_.end());
107 return layout_[row_block_id];
H A Dblock_random_access_sparse_matrix.cc91 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()) {
H A Dblock_random_access_diagonal_matrix.h84 vector<CellInfo*> layout_; member in class:ceres::internal::BlockRandomAccessDiagonalMatrix
H A Dblock_random_access_sparse_matrix.h98 LayoutType layout_; member in class:ceres::internal::BlockRandomAccessSparseMatrix
/external/chromium_org/chrome/browser/ui/cocoa/autofill/
H A Dlayout_view.h17 scoped_ptr<SimpleGridLayout> layout_; variable
/external/chromium_org/chrome/browser/chromeos/options/
H A Dvpn_config_view.cc232 layout_(NULL),
500 layout_ = views::GridLayout::CreatePanel(this);
501 SetLayoutManager(layout_);
506 views::ColumnSet* column_set = layout_->AddColumnSet(0);
532 layout_->StartRow(0, 0);
536 layout_->AddView(server_label);
539 layout_->AddView(server_textfield_);
540 layout_->AddPaddingRow(0, views::kRelatedControlVerticalSpacing);
547 layout_->StartRow(0, 0);
548 layout_
[all...]
H A Dvpn_config_view.h161 views::GridLayout* layout_; member in class:chromeos::VPNConfigView
/external/chromium_org/chrome/browser/ui/views/tabs/
H A Dstacked_tab_strip_layout_unittest.cc49 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_
[all...]
/external/chromium_org/ash/desktop_background/
H A Dwallpaper_resizer.h37 WallpaperLayout layout() const { return layout_; }
64 WallpaperLayout layout_; member in class:ash::WallpaperResizer
H A Dwallpaper_resizer.cc107 layout_(layout),
121 layout_, resized_bitmap),
/external/chromium_org/chrome/browser/ui/views/frame/
H A Dopaque_browser_frame_view_linux.cc21 layout_(layout),
47 layout_->SetButtonOrdering(leading_buttons, trailing_buttons);
H A Dopaque_browser_frame_view_linux.h37 OpaqueBrowserFrameViewLayout* layout_; member in class:OpaqueBrowserFrameViewLinux
H A Dopaque_browser_frame_view.cc94 layout_(new OpaqueBrowserFrameViewLayout(this)),
102 SetLayoutManager(layout_);
159 this, layout_, browser_view->browser()->profile()));
173 return layout_->GetBoundsForTabStrip(tabstrip->GetPreferredSize(), width());
178 layout_->GetTabStripInsetsTop(false) :
179 layout_->NonClientTopBorderHeight(false);
192 return layout_->GetMinimumSize(width());
199 return layout_->client_view_bounds();
204 return layout_->GetWindowBoundsForClientBounds(client_bounds);
227 if (layout_
[all...]
H A Dbrowser_view_layout_unittest.cc143 BrowserViewLayout* layout() { return layout_.get(); }
183 // TODO(jamescook): Attach |layout_| to |root_view_|?
184 layout_.reset(new BrowserViewLayout);
186 layout_->Init(delegate_,
199 scoped_ptr<BrowserViewLayout> layout_; member in class:BrowserViewLayoutTest
200 MockBrowserViewLayoutDelegate* delegate_; // Owned by |layout_|.
H A Dopaque_browser_frame_view.h161 OpaqueBrowserFrameViewLayout* layout_; member in class:OpaqueBrowserFrameView
/external/chromium_org/ui/gfx/
H A Drender_text_pango.cc81 : layout_(NULL),
95 pango_layout_get_pixel_size(layout_, &width, &height);
128 pango_layout_xy_to_index(layout_, p.x() * PANGO_SCALE, p.y() * PANGO_SCALE,
161 return PANGO_PIXELS(pango_layout_get_baseline(layout_));
235 pango_layout_index_to_pos(layout_, TextIndexToLayoutIndex(index), &pos);
270 DCHECK(layout_);
279 DCHECK(layout_);
300 if (layout_) {
301 // TODO(msw): Keep |layout_| across text changes, etc.; it can be re-used.
302 g_object_unref(layout_);
326 CHECK_NE(static_cast<PangoLayout*>(NULL), layout_); local
[all...]
H A Drender_text_pango.h71 PangoLayout* layout_; member in class:gfx::RenderTextPango
72 // A single line layout resulting from laying out via |layout_|.
80 // The text in the |layout_|.
/external/chromium_org/chrome/browser/resources/options/chromeos/
H A Ddisplay_options.js123 layout_: options.SecondaryDisplayLayout.RIGHT,
307 if (this.layout_ == options.SecondaryDisplayLayout.LEFT ||
308 this.layout_ == options.SecondaryDisplayLayout.RIGHT) {
314 [this.layout_, offset / this.visualScale_]);
398 this.layout_ = this.dragging_.display.isPrimary ?
403 this.layout_ = this.dragging_.display.isPrimary ?
408 this.layout_ = this.dragging_.display.isPrimary ?
413 this.layout_ = this.dragging_.display.isPrimary ?
419 if (this.layout_ == options.SecondaryDisplayLayout.LEFT ||
420 this.layout_
[all...]
/external/chromium_org/ui/v2/public/
H A Dview.h96 scoped_ptr<Layout> layout_; member in class:v2::View
/external/deqp/framework/opengl/
H A DgluVarType.cpp258 VariableDeclaration::VariableDeclaration (const VarType& varType_, const std::string& name_, Storage storage_, Interpolation interpolation_, const Layout& layout_, deUint32 memoryAccessQualifierBits_) argument
259 : layout (layout_)
H A DgluVarType.hpp256 VariableDeclaration (const VarType& varType_, const std::string& name_, Storage storage_ = STORAGE_LAST, Interpolation interpolation_ = INTERPOLATION_LAST, const Layout& layout_ = Layout(), deUint32 memoryAccessQualifierBits_ = 0);
/external/chromium_org/chrome/browser/ui/views/extensions/
H A Dextension_install_dialog_view.cc916 : layout_(new views::GridLayout(this)),
919 SetLayoutManager(layout_);
920 views::ColumnSet* column_set = layout_->AddColumnSet(0);
938 layout_->StartRowWithPadding(0, 0,
948 layout_->AddView(detail_label);
H A Dextension_install_dialog_view.h245 views::GridLayout* layout_; member in class:ExpandableContainerView::DetailsView

Completed in 381 milliseconds

12