Searched refs:rows_ (Results 1 - 23 of 23) sorted by relevance

/external/chromium_org/ui/views/controls/
H A Dprefix_selector_unittest.cc21 rows_.push_back(ASCIIToUTF16("aardvark"));
22 rows_.push_back(ASCIIToUTF16("antelope"));
23 rows_.push_back(ASCIIToUTF16("badger"));
24 rows_.push_back(ASCIIToUTF16("gnu"));
30 return static_cast<int>(rows_.size());
42 return rows_[row];
46 std::vector<base::string16> rows_; member in class:views::TestPrefixDelegate
/external/chromium_org/third_party/webrtc/modules/desktop_capture/
H A Ddesktop_region.cc49 rows_ = other.rows_;
50 for (Rows::iterator it = rows_.begin(); it != rows_.end(); ++it) {
60 Rows::const_iterator it1 = rows_.begin();
61 Rows::const_iterator it2 = region.rows_.begin();
62 while (it1 != rows_.end()) {
63 if (it2 == region.rows_.end() ||
73 return it2 == region.rows_.end();
77 for (Rows::iterator row = rows_
[all...]
H A Ddesktop_region.h98 bool is_empty() const { return rows_.empty(); }
155 // do anything if called with |row| set to rows_.begin() (i.e. first row of
160 Rows rows_; member in class:webrtc::DesktopRegion
/external/ceres-solver/internal/ceres/
H A Dtriplet_sparse_matrix.cc49 rows_(NULL),
62 rows_(NULL),
78 rows_(NULL),
98 if ((rows_[i] < 0) || (rows_[i] >= num_rows_) ||
118 new_rows[i] = rows_[i];
123 rows_.reset(new_rows);
142 rows_.reset(new int[max_num_nonzeros_]);
149 rows_[i] = orig.rows_[
[all...]
H A Dcompressed_row_sparse_matrix.cc77 rows_.resize(num_rows + 1, 0);
95 rows_.resize(num_rows_ + 1, 0);
121 ++rows_[m.rows()[idx] + 1];
128 rows_[i] += rows_[i - 1];
140 rows_.resize(num_rows + 1);
144 rows_[0] = 0;
148 rows_[i + 1] = i + 1;
167 for (int idx = rows_[r]; idx < rows_[
[all...]
H A Dcompressed_row_sparse_matrix.h91 virtual int num_nonzeros() const { return rows_[num_rows_]; }
109 const int* rows() const { return &rows_[0]; }
110 int* mutable_rows() { return &rows_[0]; }
163 vector<int> rows_; member in class:ceres::internal::CompressedRowSparseMatrix
H A Dtriplet_sparse_matrix.h72 // of rows_, cols_ and values_. If new_max_num_nonzeros is smaller
91 const int* rows() const { return rows_.get(); }
93 int* mutable_rows() { return rows_.get(); }
118 // stored at the location (rows_[i], cols_[i]). If the there are
119 // multiple entries with the same (rows_[i], cols_[i]), the values_
121 scoped_array<int> rows_; member in class:ceres::internal::TripletSparseMatrix
/external/chromium_org/chrome/browser/resources/net_internals/
H A Dtable_printer.js29 this.rows_ = [];
48 this.rows_.push([]);
59 var r = this.rows_[this.rows_.length - 1];
79 // Insert empty new row at start of |rows_| if currently no header row.
81 this.rows_.splice(0, 0, []);
85 this.rows_[0].push(cell);
94 for (var i = 0; i < this.rows_.length; ++i) {
95 numColumns = Math.max(numColumns, this.rows_[i].length);
105 if (rowIndex >= this.rows_
[all...]
/external/chromium_org/mojo/examples/keyboard/
H A Dkeyboard_view.cc68 if (width() == 0 || height() == 0 || rows_.empty() ||
78 (height() - (static_cast<int>(rows_.size() - 1) * kVerticalPadding)) /
79 static_cast<int>(rows_.size());
82 for (size_t i = 0; i < rows_.size(); ++i) {
83 LayoutRow(*(rows_[i]), static_cast<int>(i), initial_x, button_width,
141 rows_ = rows;
144 for (size_t i = 0; i < rows_.size(); ++i) {
146 static_cast<int>(rows_[i]->num_keys));
147 ConfigureButtonsInRow(static_cast<int>(i), *rows_[i]); local
193 offset += static_cast<int>(rows_[
[all...]
H A Dkeyboard_view.h86 // Maximium number of keys in a row. Determined from |rows_|.
91 std::vector<const Row*> rows_; member in class:mojo::examples::KeyboardView
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DVariablePacker.h38 std::vector<unsigned> rows_; member in class:VariablePacker
H A DVariablePacker.cpp95 ASSERT((rows_[row] & columnFlags) == 0);
96 rows_[row] |= columnFlags;
104 for (; topNonFullRow_ < maxRows_ && rows_[topNonFullRow_] == kColumnMask;
108 for (; bottomNonFullRow_ >= 0 && rows_[bottomNonFullRow_] == kColumnMask;
123 bool rowEmpty = row < bottomRow ? ((rows_[row] & columnFlags) == 0) : false;
172 rows_.clear();
173 rows_.resize(maxVectors, 0);
/external/chromium_org/chrome/browser/ui/cocoa/autofill/
H A Dsimple_grid_layout.h81 int num_rows() const { return static_cast<int>(rows_.size()); }
97 ScopedVector<Row> rows_; member in class:SimpleGridLayout
/external/chromium_org/ui/app_list/cocoa/
H A Dapps_collection_view_drag_manager.h26 size_t rows_; variable
/external/chromium_org/ui/views/layout/
H A Dgrid_layout.cc667 STLDeleteElements(&rows_);
818 int y = rows_[view_state->start_row]->Location() + insets_.top();
820 view_state->row_span, &rows_);
822 y += rows_[view_state->start_row]->max_ascent() - view_state->baseline;
852 if (rows_.empty())
877 LayoutElement::ResetSizes(&rows_);
915 Row* row = rows_[view_state->start_row];
937 LayoutElement::CalculateLocationsFromSize(&rows_);
940 pref->set_height(rows_[rows_
[all...]
H A Dgrid_layout.h206 // Adds the Row to rows_, as well as updating next_column_,
257 mutable std::vector<Row*> rows_; member in class:views::GridLayout
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/devfs/
H A Dtty_node.h57 int rows_; member in class:nacl_io::TtyNode
H A Dtty_node.cc41 rows_(DEFAULT_TTY_ROWS),
286 if (rows_ == size->ws_row && cols_ == size->ws_col)
288 rows_ = size->ws_row;
303 size->ws_row = rows_;
/external/chromium_org/ui/views/controls/table/
H A Dtable_view_unittest.cc78 std::vector<std::vector<int> > rows_; member in class:views::__anon17073::TestTableModel2
91 DCHECK(row >= 0 && row <= static_cast<int>(rows_.size()));
95 rows_.insert(rows_.begin() + row, new_row);
100 DCHECK(row >= 0 && row <= static_cast<int>(rows_.size()));
101 rows_.erase(rows_.begin() + row);
107 DCHECK(row >= 0 && row < static_cast<int>(rows_.size()));
108 rows_[row][0] = c1_value;
109 rows_[ro
[all...]
/external/chromium_org/ui/file_manager/gallery/js/
H A Dmosaic_mode.js1230 this.rows_ = [];
1250 return this.firstRowIndex_ + this.rows_.length;
1275 for (var r = 0; r < this.rows_.length; r++) {
1276 if (this.rows_[r].coversY(y))
1277 return this.rows_[r].getEdgeTileIndex_(direction);
1287 for (var r = 0; r !== this.rows_.length; r++) {
1288 if (this.rows_[r].hasTile(index))
1289 return this.rows_[r];
1309 this.rows_.push(this.newRow_);
1323 this.rows_
[all...]
/external/chromium_org/third_party/webrtc/system_wrappers/source/
H A Ddata_log.cc98 RowList rows_[2]; member in class:webrtc::LogTable
144 rows_(),
145 rows_history_(&rows_[0]),
146 rows_flush_(&rows_[1]),
/external/webrtc/src/system_wrappers/source/
H A Ddata_log.cc98 RowList rows_[2]; member in class:webrtc::LogTable
144 rows_(),
145 rows_history_(&rows_[0]),
146 rows_flush_(&rows_[1]),
/external/chromium_org/chrome/browser/sync/test/integration/
H A Dtyped_urls_helper.cc47 : rows_(rows), wait_event_(event) {}
52 backend->GetAllTypedURLs(rows_);
62 history::URLRows* rows_; member in class:__anon4844::GetTypedUrlsTask

Completed in 1436 milliseconds