HomeSort by relevance Sort by last modified time
    Searched refs:rows_ (Results 1 - 16 of 16) sorted by null

  /external/chromium_org/ui/views/controls/
prefix_selector_unittest.cc 19 rows_.push_back(ASCIIToUTF16("aardvark"));
20 rows_.push_back(ASCIIToUTF16("antelope"));
21 rows_.push_back(ASCIIToUTF16("badger"));
22 rows_.push_back(ASCIIToUTF16("gnu"));
28 return static_cast<int>(rows_.size());
40 return rows_[row];
44 std::vector<string16> rows_; member in class:views::TestPrefixDelegate
  /external/ceres-solver/internal/ceres/
compressed_row_sparse_matrix.cc 76 rows_.resize(num_rows + 1, 0);
94 rows_.resize(num_rows_ + 1, 0);
120 ++rows_[m.rows()[idx] + 1];
127 rows_[i] += rows_[i-1];
139 rows_.resize(num_rows + 1);
143 rows_[0] = 0;
147 rows_[i + 1] = i + 1;
166 for (int idx = rows_[r]; idx < rows_[r + 1]; ++idx)
    [all...]
triplet_sparse_matrix.cc 49 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_[i]
    [all...]
compressed_row_sparse_matrix.h 91 virtual int num_nonzeros() const { return rows_[num_rows_]; }
109 const int* rows() const { return &rows_[0]; }
110 int* mutable_rows() { return &rows_[0]; }
134 vector<int> rows_; member in class:ceres::internal::CompressedRowSparseMatrix
triplet_sparse_matrix.h 72 // 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/third_party/angle_dx11/src/compiler/
VariablePacker.h 38 std::vector<unsigned> rows_; member in class:VariablePacker
VariablePacker.cpp 136 ASSERT((rows_[row] & columnFlags) == 0);
137 rows_[row] |= columnFlags;
145 for (; topNonFullRow_ < maxRows_ && rows_[topNonFullRow_] == kColumnMask;
149 for (; bottomNonFullRow_ >= 0 && rows_[bottomNonFullRow_] == kColumnMask;
164 bool rowEmpty = row < bottomRow ? ((rows_[row] & columnFlags) == 0) : false;
203 rows_.clear();
204 rows_.resize(maxVectors, 0);
  /external/chromium_org/chrome/browser/ui/cocoa/autofill/
simple_grid_layout.h 81 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/
apps_collection_view_drag_manager.h 26 size_t rows_; variable
  /external/chromium/chrome/browser/resources/net_internals/
util.js 147 this.rows_ = [];
166 this.rows_.push([]);
175 var r = this.rows_[this.rows_.length - 1];
192 // Insert empty new row at start of |rows_| if currently no header row.
194 this.rows_.splice(0, 0, []);
198 this.rows_[0].push(cell);
207 for (var i = 0; i < this.rows_.length; ++i) {
208 numColumns = Math.max(numColumns, this.rows_[i].length);
218 if (rowIndex >= this.rows_.length
    [all...]
  /external/chromium_org/ui/views/layout/
grid_layout.cc 675 STLDeleteElements(&rows_);
830 int y = rows_[view_state->start_row]->Location() + insets_.top();
832 view_state->row_span, &rows_);
834 y += rows_[view_state->start_row]->max_ascent() - view_state->baseline;
864 if (rows_.empty())
889 LayoutElement::ResetSizes(&rows_);
927 Row* row = rows_[view_state->start_row];
949 LayoutElement::CalculateLocationsFromSize(&rows_);
952 pref->set_height(rows_[rows_.size() - 1]->Location()
    [all...]
grid_layout.h 202 // Adds the Row to rows_, as well as updating next_column_,
253 std::vector<Row*> rows_; member in class:views::GridLayout
  /external/chromium_org/ui/views/controls/table/
table_view_unittest.cc 78 std::vector<std::vector<int> > rows_; member in class:views::__anon16894::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_[row][1] = c2_value
    [all...]
  /external/webrtc/src/system_wrappers/source/
data_log.cc 98 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/
typed_urls_helper.cc 46 : rows_(rows), wait_event_(event) {}
51 backend->GetAllTypedURLs(rows_);
61 history::URLRows* rows_; member in class:__anon8272::GetTypedUrlsTask
  /external/chromium_org/chrome/browser/resources/file_manager/js/photo/
mosaic_mode.js     [all...]

Completed in 3485 milliseconds