HomeSort by relevance Sort by last modified time
    Searched refs:row (Results 476 - 500 of 1530) sorted by null

<<11121314151617181920>>

  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
MultiFoldersSelectionDialog.java 129 * @param row The item being updated.
131 private final void update(FolderSelectorAdapter.FolderRow row) {
132 final boolean add = !row.isPresent();
150 row.setIsPresent(add);
152 final Folder folder = row.getFolder();
  /sdk/testapps/testSensors/src/com/android/tests/testsensors/
TestSensorsActivity.java 61 // Add a row representing this sensor on the display
63 final TableRow row = (TableRow) inflater.inflate(R.layout.one_row, mTableLayout, false); local
64 mTableLayout.addView(row);
68 mName = (TextView) row.findViewById(R.id.row_textview_name);
71 mVal = (TextView) row.findViewById(R.id.row_textview_value);
  /external/chromium_org/chrome/browser/android/provider/
chrome_browser_provider.cc 719 history::URLID Run(const history::HistoryAndBookmarkRow& row) {
722 base::Unretained(service()), row, cancelable_consumer(),
733 // This is because it represents a SQLite database row id.
786 int Run(const history::HistoryAndBookmarkRow& row,
791 base::Unretained(service()), row, selection,
886 void BuildSearchRow(history::SearchRow* row) {
897 TemplateURLRef::SearchTermsArgs search_terms_args(row->search_term());
901 row->set_url(GURL(url));
902 row->set_template_url_id(search_engine->id());
921 history::URLID Run(const history::SearchRow& row) {
1239 history::HistoryAndBookmarkRow row; local
1321 history::HistoryAndBookmarkRow row; local
1374 history::SearchRow row; local
1446 history::SearchRow row; local
    [all...]
  /external/eigen/Eigen/src/IterativeLinearSolvers/
IncompleteLUT.h 20 * by the average magnitude of all the original elements in the current row.
21 * 2) After the elimination of the row, only the @p fill largest elements in
130 int QuickSplit(VectorV &row, VectorI &ind, int ncut);
135 inline bool operator() (const Index& row, const Index& col, const Scalar&) const
137 return row!=col;
166 * \param fillfactor This is used to compute the number @p fill_in of largest elements to keep on each row.
177 * On output, the vector row is permuted such that its elements satisfy
178 * abs(row(i)) >= abs(row(ncut)) if i<ncut
179 * abs(row(i)) <= abs(row(ncut)) if i>ncut
    [all...]
  /external/eigen/Eigen/src/SparseCore/
SparseVector.h 88 inline Scalar coeff(Index row, Index col) const
90 eigen_assert((IsColVector ? col : row)==0);
91 return coeff(IsColVector ? row : col);
95 inline Scalar& coeffRef(Index row, Index col)
97 eigen_assert((IsColVector ? col : row)==0);
98 return coeff(IsColVector ? row : col);
140 inline Scalar& insert(Index row, Index col)
142 Index inner = IsColVector ? row : col;
143 Index outer = IsColVector ? col : row;
353 inline Index row() const { return IsColVector ? index() : 0; function in class:Eigen::SparseVector::InnerIterator
385 inline Index row() const { return IsColVector ? index() : 0; } function in class:Eigen::SparseVector::ReverseInnerIterator
    [all...]
  /frameworks/base/core/java/com/android/internal/view/menu/
IconMenuView.java 56 /** Height of each row */
62 /** Maximum number of items per row */
112 * The layout to use for menu items. Each index is the row number (0 is the
113 * top-most). Each value contains the number of items in that row.
218 * @return int[] Where the value of index i contains the number of items for row i
227 * the last row.
256 for (int row = 0; row < numRows; row++) {
257 int numItemsOnRow = layout[row];
    [all...]
  /frameworks/native/opengl/tests/hwc/
hwcStress.cpp 40 * of vectors. The array is accessed in row major order, so each
41 * row is a vector of smart pointers. All the pointers of a single
42 * row point to graphic buffers which use the same pixel format and
47 * graphic buffer within the same row. Since the graphic buffers
48 * in a particular row have the same pixel format and dimension,
225 * such that there is a unique row to be used for each
229 * selected from any of the columns of the selected row.
546 * vectors. All the graphic buffers in a particular row are of the same
549 * in the same row, will be filled with a unique color.
565 for (unsigned int row = 0; row < rows; row++)
    [all...]
  /packages/apps/Browser/src/com/android/browser/view/
BookmarkExpandableView.java 277 int mRowCount = 1; // assume at least 1 child fits in a row
323 LinearLayout row = (LinearLayout) convertView; local
324 if (row.getChildCount() > rowCount) {
325 row.removeViews(rowCount, row.getChildCount() - rowCount);
329 if (row.getChildCount() > i) {
330 cv = row.getChildAt(i);
334 View v = childAdapter.getView(realChildPosition, cv, row);
340 row.addView(v);
342 row.removeViewAt(i)
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
MediaStore_VideoTest.java 45 for (Uri row : mRowsAdded) {
46 mContentResolver.delete(row, null, null);
  /external/chromium_org/chrome/browser/resources/instant/
instant.css 30 .row {
  /external/chromium_org/chrome/browser/ui/views/
hung_renderer_view.cc 110 string16 HungPagesTableModel::GetText(int row, int column_id) {
111 DCHECK(row >= 0 && row < RowCount());
112 string16 title = tab_observers_[row]->web_contents()->GetTitle();
122 gfx::ImageSkia HungPagesTableModel::GetIcon(int row) {
123 DCHECK(row >= 0 && row < RowCount());
125 tab_observers_[row]->web_contents())->GetFavicon().AsImageSkia();
  /external/chromium_org/third_party/icu/source/common/
propsvec.h 34 * Logically, each row has a certain number of uint32_t values,
38 * In each internal row,
39 * row[0] contains the start code point and
40 * row[1] contains the limit code point,
43 * Initially, there is only one "normal" row for
47 * It would be possible to store only one range boundary per row,
71 * @param columns Number of value integers (uint32_t) per row.
113 * - for each (non-unique) row, call the handler function
115 * The handler's rowIndex is the index of the row in the compacted
123 * and the row is arbitrary (but not NULL)
    [all...]
  /external/chromium_org/ui/gfx/
interpolated_transform_unittest.cc 177 for (int row = 0; row < 3; ++row) {
179 float entry = m.get(row, col);
228 for (int row = 0; row < 3; ++row) {
230 float entry = m.get(row, col);
  /external/chromium_org/ui/views/controls/combobox/
combobox.h 92 virtual void SetSelectedRow(int row) OVERRIDE;
93 virtual string16 GetTextForRow(int row) OVERRIDE;
  /external/icu4c/common/
propsvec.h 34 * Logically, each row has a certain number of uint32_t values,
38 * In each internal row,
39 * row[0] contains the start code point and
40 * row[1] contains the limit code point,
43 * Initially, there is only one "normal" row for
47 * It would be possible to store only one range boundary per row,
71 * @param columns Number of value integers (uint32_t) per row.
113 * - for each (non-unique) row, call the handler function
115 * The handler's rowIndex is the index of the row in the compacted
123 * and the row is arbitrary (but not NULL)
    [all...]
  /external/markdown/markdown/extensions/
imagelinks.py 72 for row in rows:
73 for photo_url, title in row:
99 rows.append([]) # start a new row
  /external/pixman/demos/
conical-test.c 80 int row = i / GRADIENTS_PER_ROW; local
89 0, 0, 0, 0, column * SIZE, row * SIZE,
  /development/samples/ApiDemos/src/com/example/android/apis/media/
AudioFxDemo.java 121 LinearLayout row = new LinearLayout(this); local
122 row.setOrientation(LinearLayout.HORIZONTAL);
155 row.addView(minDbTextView);
156 row.addView(bar);
157 row.addView(maxDbTextView);
159 mLinearLayout.addView(row);
  /development/samples/TicTacToeLib/src/com/example/android/tictactoe/library/
GameActivity.java 192 int row = -1; local
198 row = j;
221 if (col != -1 || row != -1 || diag != -1) {
222 setFinished(player, col, row, diag);
234 private void setFinished(State player, int col, int row, int diagonal) {
239 mGameView.setFinished(col, row, diagonal);
  /external/ceres-solver/internal/ceres/
schur_eliminator_test.cc 108 int row = 0; local
112 P.block(row, row, block_size, block_size) =
114 .block(row, row, block_size, block_size)
117 row += block_size;
  /external/chromium_org/chrome/browser/history/android/
android_history_provider_service.cc 45 const history::HistoryAndBookmarkRow& row,
56 &HistoryBackend::UpdateHistoryAndBookmarks, NULL, request, row,
157 const history::SearchRow& row,
166 &HistoryBackend::InsertSearchTerm, NULL, request, row);
175 const history::SearchRow& row,
186 &HistoryBackend::UpdateSearchTerms, NULL, request, row, selection,
  /external/chromium_org/chrome/browser/importer/
profile_writer_unittest.cc 56 history::URLRow row(GURL(url), 0);
57 row.set_title(title);
58 row.set_visit_count(visit_count);
59 row.set_typed_count(typed_count);
60 row.set_last_visit(base::Time::NowFromSystemTime() -
62 return row;
  /external/chromium_org/chrome/browser/resources/
certificate_viewer.css 54 display: table-row;
112 .tree-row[selected] {
117 .tree-item > .tree-row {
  /external/chromium_org/chrome/browser/resources/task_manager/
task_manager.css 70 /* Bullets on the left of row. */
71 .table-row > .table-row-cell:first-child::before {
81 .table-row-cell {
  /external/chromium_org/ui/webui/resources/css/
table.css 41 .table-row {
47 .table-row-cell {
52 .table-row-cell > * {

Completed in 522 milliseconds

<<11121314151617181920>>