| /frameworks/base/packages/ExternalStorageProvider/src/com/android/externalstorage/ |
| TestDocumentsProvider.java | 133 final RowBuilder row = result.newRow(); local 134 row.add(Root.COLUMN_ROOT_ID, MY_ROOT_ID); 135 row.add(Root.COLUMN_FLAGS, Root.FLAG_SUPPORTS_RECENTS | Root.FLAG_SUPPORTS_CREATE); 136 row.add(Root.COLUMN_TITLE, "_Test title which is really long"); 137 row.add(Root.COLUMN_SUMMARY, 139 row.add(Root.COLUMN_DOCUMENT_ID, MY_DOC_ID); 140 row.add(Root.COLUMN_AVAILABLE_BYTES, 1024); 394 final RowBuilder row = result.newRow(); local 395 row.add(Document.COLUMN_DOCUMENT_ID, docId); 396 row.add(Document.COLUMN_DISPLAY_NAME, docId) [all...] |
| /bootable/recovery/minui/ |
| resources.c | 263 unsigned char* row = malloc(width); local 266 png_read_row(png_ptr, row, NULL); 267 int w = (row[1] << 8) | row[0]; 268 int h = (row[3] << 8) | row[2]; 269 int len = row[4]; 270 char* loc = row+5; 291 png_read_row(png_ptr, row, NULL); 292 memcpy(pData + i*w, row, w) [all...] |
| /device/generic/goldfish/camera/fake-pipeline2/ |
| Sensor.h | 37 * offset between each row being equal to the row readout time. 47 * v = row in reset (vertical blanking interval) 48 * E = row capturing image data 49 * R = row being read out 53 * Row # | ..|CCCC______|_________|_________| : : 60 * Row # | : |CCCC_____|_________|______________| : 67 * Row # | : : |CCCC_____|______________|_______|... 185 // While each row has to read out, reset, and then expose, the (reset + 186 // expose) sequence can be overlapped by other row readouts, so the fina [all...] |
| /external/ceres-solver/internal/ceres/ |
| block_jacobian_writer.cc | 165 // Construct the cells in each row. 172 CompressedRow* row = &bs->rows[i]; local 174 row->block.size = residual_block->NumResiduals(); 175 row->block.position = row_block_position; 176 row_block_position += row->block.size; 178 // Size the row by the number of active parameters in this residual. 186 row->cells.resize(num_active_parameter_blocks); 188 // Add layout information for the active parameters in this row. 193 Cell& cell = row->cells[k]; 203 sort(row->cells.begin(), row->cells.end(), CellLessThan) [all...] |
| block_random_access_matrix.h | 49 // has row blocks of size 5 and 4, and column blocks of size 3, 4 and 50 // 5. It has six cells corresponding to the six row-column block 73 // int row, col, row_stride, col_stride; 75 // &row, &col, 81 // m.block(row, col, row_block_size, col_block_size) = ... 107 // (row, col) within this matrix. 114 int* row, 124 // all row blocks and column block sizes respectively.
|
| compressed_col_sparse_matrix_utils.cc | 62 // and detects the presence of a row block by checking for the 72 // Since we are using lower_bound, it will return the row id 73 // where the row block starts. For everything but the first row 75 // skip, as we only need the first row to detect the presence of 78 // For rows all but the first row in the last row block, 80 // be skipped like the rows in other row blocks too.
|
| /external/chromium_org/third_party/WebKit/ManualTests/win/ |
| milliondollar.html | 13 .row {background:url(100grid_inv.png) #000;height: 100px; text-align: left; position:relative;width:1000px;z-index:10;} 132 <div class="row" id="row0"></div><div class="row" id="row1"></div><div class="row" id="row2"></div><div class="row" id="row3"></div><div class="row" id="row4"></div><div class="row" id="row5"></div><div class="row" id="row6"></div><div class="row" id="row7"></div><div class="row" id="row8"></div><div class="row" id="row9"></div [all...] |
| /external/eigen/test/eigen2/ |
| eigen2_submatrices.cpp | 42 Row.h Column.h Block.h Minor.h DiagonalCoeffs.h 72 //check row() and col() 73 VERIFY_IS_APPROX(m1.col(c1).transpose(), m1.transpose().row(c1)); 74 VERIFY_IS_APPROX(square.row(r1).eigen2_dot(m1.col(c1)), (square.lazy() * m1.conjugate())(r1,c1)); 75 //check operator(), both constant and non-constant, on row() and col() 76 m1.row(r1) += s1 * m1.row(r2); 84 VERIFY_IS_APPROX(m1.row(r1), br1); 132 VERIFY(ei_real(ones.row(r1).sum()) == RealScalar(cols)); 135 VERIFY(ei_real(ones.row(r1).eigen2_dot(ones.row(r2))) == RealScalar(cols)) [all...] |
| /hardware/ti/omap4xxx/camera/ |
| NV12_resize.c | 36 mmUint16 row,col; local 113 for (row=0; row < cody; row++) 117 y = (mmUint16) ((mmUint32) (row*resizeFactorY) >> 9); 118 yf = (mmUchar) ((mmUint32)((row*resizeFactorY) >> 6) & 0x7); 192 for (row=0; row < (((cody)>>1)); row++) 199 y = (mmUint16) ((mmUint32) (row*resizeFactorY) >> 9) [all...] |
| /external/webrtc/src/system_wrappers/source/ |
| data_log.cc | 31 // A Row contains cells, which are indexed by the column names as std::string. 33 class Row { 35 Row(); 36 ~Row(); 57 // A LogTable contains multiple rows, where only the latest row is active for 71 // Buffers the current row while it is waiting to be written to file, 72 // which is done by a call to Flush(). A new row is available when the 95 typedef std::list<Row*> RowList; 101 Row* current_row_; 107 Row::Row( [all...] |
| /external/javasqlite/src/main/java/SQLite/JDBC2z/ |
| JDBCResultSet.java | 9 * Current row to be retrieved. 11 private int row; field in class:JDBCResultSet 62 * Flag for cursor being (not) on insert row. 67 * Row buffer for insert/update row. 79 this.row = -1; 134 if (row < 0) { 138 System.arraycopy((String []) tr.rows.elementAt(row), 0, 147 row++; 148 return row < tr.nrows [all...] |
| /cts/apps/CtsVerifier/lib/colorchecker/ |
| testingimage.cpp | 102 int TestingImage::getPixelValue(int row, int column, int channel) const { 103 assert ((row >= 0) && (row < mHeight)); 106 return (int)mImage[row * mRowSpan + column * mChannels + channel]; 109 Vec3i TestingImage::getPixelValue(int row, int column) const { 110 Vec3i current_color(getPixelValue(row, column, 0), 111 getPixelValue(row, column, 1), 112 getPixelValue(row, column, 2));
|
| /development/samples/SoftKeyboard/res/xml/ |
| qwerty.xml | 28 <Row> 39 </Row> 41 <Row> 52 </Row> 54 <Row> 68 </Row> 70 <Row android:rowEdgeFlags="bottom"> 80 </Row>
|
| symbols.xml | 28 <Row> 39 </Row> 41 <Row> 52 </Row> 54 <Row> 68 </Row> 70 <Row android:rowEdgeFlags="bottom"> 80 </Row>
|
| /external/chromium/chrome/browser/resources/options/ |
| autofill_overlay.css | 17 div.row { 18 display: table-row;
|
| /external/chromium/chrome/browser/sync/resources/ |
| gaia_login.html | 44 <tr id="email-row"> 57 <tr id="access-code-label-row" class="access-code-row"> 63 <tr id="access-code-help-row" class="access-code-row"> 77 <tr id="password-row"> 87 <tr id="access-code-input-row" class="access-code-row">
|
| /external/chromium/chrome/browser/ui/gtk/ |
| task_manager_gtk.h | 58 // Returns the model data for a given |row| and |col_id|. 59 std::string GetModelText(int row, int col_id); 61 // Retrieves the resource icon from the model for |row|. 62 GdkPixbuf* GetModelIcon(int row); 64 // Sets the treeview row data. |row| is an index into the model and |iter| 66 void SetRowDataFromModel(int row, GtkTreeIter* iter); 94 // row-activated handler that foregrounds a process on activation (e.g.,
|
| /external/chromium-trace/trace-viewer/src/tracing/analysis/ |
| analysis_results.css | 33 .analysis-table-row { 37 .analysis-table-row:nth-child(2n+0) {
|
| /external/chromium_org/ash/system/tray/ |
| special_popup_row.h | 23 // The 'special' looking row in the uber-tray popups. This is usually the bottom 24 // row in the popups, and has a fixed height.
|
| /external/chromium_org/cc/scheduler/ |
| texture_uploader_unittest.cc | 123 // We'll expect the first byte of every row to be 0x1, and the last byte to 127 for (GLsizei row = 0; row < height; ++row) { 129 bytes + (xoffset * bytes_per_pixel + (yoffset + row) * stride); 209 // Mark the beginning and end of each row, for the test. 218 // Mark the beginning and end of each row, for the test. 227 // Mark the beginning and end of each row, for the test.
|
| /external/chromium_org/chrome/browser/history/ |
| history_backend_android.cc | 13 const HistoryAndBookmarkRow& row) { 19 id = android_provider_backend_->InsertHistoryAndBookmark(row); 43 const HistoryAndBookmarkRow& row, 52 result = android_provider_backend_->UpdateHistoryAndBookmarks(row, 121 const SearchRow& row) { 127 id = android_provider_backend_->InsertSearchTerm(row); 134 const SearchRow& row, 143 result = android_provider_backend_->UpdateSearchTerms(row, selection,
|
| in_memory_history_backend.cc | 73 if (visited_details->row.typed_count() > 0 || 75 HasKeyword(visited_details->row.url())) { 77 modified_details.changed_urls.push_back(visited_details->row); 146 for (URLRows::const_iterator row = details.rows.begin(); 147 row != details.rows.end(); ++row) { 150 db_->DeleteURLRow(row->id()); 162 // Because this row won't have a typed count the title and other stuff
|
| /external/chromium_org/chrome/browser/ui/cocoa/omnibox/ |
| omnibox_popup_matrix.mm | 115 // the mouse is released over a cell, call the delegate to open the row's URL. 137 // No row could be selected if the model failed to update. 175 NSInteger row, column; 176 if ([self getRow:&row column:&column forPoint:point]) { 177 [self highlightRowAt:row]; 187 NSInteger row, column; 188 if ([self getRow:&row column:&column forPoint:point]) { 191 delegate_->OnMatrixRowSelected(self, row);
|
| /external/chromium_org/chrome/browser/ui/gtk/ |
| task_manager_gtk.h | 56 // Returns the model data for a given |row| and |col_id|. 57 std::string GetModelText(int row, int col_id); 59 // Retrieves the resource icon from the model for |row|. 60 GdkPixbuf* GetModelIcon(int row); 62 // Sets the treeview row data. |row| is an index into the model and |iter| 64 void SetRowDataFromModel(int row, GtkTreeIter* iter); 92 // row-activated handler that foregrounds a process on activation (e.g.,
|
| /external/chromium_org/chrome/test/functional/ispy/server/views/ |
| main_view.html | 20 .row { 30 <div class="row">
|