| /external/skia/src/core/ |
| SkRegion_rects.cpp | 70 struct Row { 76 SkTDArray<Row> fRows; 95 SkRegion::RunType* row = (SkRegion::RunType*)fAlloc.allocThrow(size); 96 SkRegion::RunType* rowHead = row; 101 // record the L R values for this row 108 *row++ = edge->fX; 122 *row++ = currR; 123 *row++ = edge->fX; 131 *row++ = currR; 134 int rowCount = row - rowHead [all...] |
| SkBlitMask.h | 34 * Function pointer that blits a row of mask(lcd16) into a row of dst 43 * Function pointer that blits a row of src colors through a row of a mask 44 * onto a row of dst colors. The RowFactory that returns this function ptr
|
| /cts/libs/vogar-expect/src/vogar/util/ |
| MarkResetConsole.java | 27 private int row; field in class:MarkResetConsole 41 row++; 57 private final int markRow = row; 74 for (int r = row; r > markRow; r--) { 84 row = markRow;
|
| /external/chromium_org/chrome/browser/ |
| custom_home_pages_table_model.h | 53 virtual base::string16 GetText(int row, int column_id) OVERRIDE; 54 virtual base::string16 GetTooltip(int row) OVERRIDE; 69 const history::URLRow* row, 78 // Returns the URL for a particular row, formatted for display to the user. 79 base::string16 FormattedURL(int row) const;
|
| /external/chromium_org/third_party/skia/src/core/ |
| SkBlitMask.h | 34 * Function pointer that blits a row of mask(lcd16) into a row of dst 43 * Function pointer that blits a row of src colors through a row of a mask 44 * onto a row of dst colors. The RowFactory that returns this function ptr
|
| /external/eigen/test/ |
| determinant.cpp | 36 m2.row(i).swap(m2.row(j)); 44 m2.row(i) += x*m2.row(j); 47 m2.row(i) *= x;
|
| hessenberg.cpp | 25 for(int row = 2; row < size; ++row) { 26 for(int col = 0; col < row-1; ++col) { 27 VERIFY(H(row,col) == (typename MatrixType::Scalar)0);
|
| product_large.cpp | 54 // test regression in row-vector by matrix (bad Map type) 57 MatrixXf r1 = mat1.row(2)*mat2.transpose(); 58 VERIFY_IS_APPROX(r1, (mat1.row(2)*mat2.transpose()).eval()); 60 MatrixXf r2 = mat1.row(2)*mat2; 61 VERIFY_IS_APPROX(r2, (mat1.row(2)*mat2).eval());
|
| schur_complex.cpp | 26 for(int row = 1; row < size; ++row) { 27 for(int col = 0; col < row; ++col) { 28 VERIFY(T(row,col) == (typename MatrixType::Scalar)0);
|
| umeyama.cpp | 53 for (int row = 0; row < size; ++row) 55 typename MatrixType::RowXpr rowVec = Q.row(row); 56 for (int prevRow = 0; prevRow < row; ++prevRow) 58 typename MatrixType::RowXpr prevRowVec = Q.row(prevRow); 61 Q.row(row) = rowVec.normalized(); 112 src.row(dim) = Matrix<Scalar, 1, Dynamic>::Constant(num_elements, Scalar(1)) [all...] |
| /external/eigen/test/eigen2/ |
| eigen2_determinant.cpp | 35 m2.row(i).swap(m2.row(j)); 43 m2.row(i) += x*m2.row(j); 46 m2.row(i) *= x;
|
| /external/harfbuzz_ng/util/ |
| helper-cairo-ansi.cc | 68 /* Drop first row while empty */ 81 /* Drop last row while empty */ 85 const uint32_t *row = data + (height - 1) * stride / 4; local 88 if (row[i] != bg_color) 95 height++; /* Add one last blank row for padding. */
|
| /external/skia/bench/ |
| VertBench.cpp | 25 ROW = 20, 27 PTS = (ROW + 1) * (COL + 1), 28 IDX = ROW * COL * 6, 50 for (int y = 0; y <= ROW; y++) { 57 if (x < COL && y < ROW) {
|
| /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm11_asm/ |
| h264bsd_interpolate_chroma_ver.s | 176 LDRB tmp2, [ptrA,width] ;// 2 row, 1 col 177 LDRB tmp3, [ptrA,width, LSL #1] ;// 3 row, 1 col 178 LDRB tmp1, [ptrA],#1 ;// 1 row, 1 col 180 LDRB tmp5, [ptrA,width] ;// 2 row, 2 col 181 LDRB tmp6, [ptrA,width, LSL #1] ;// 3 row, 2 col 182 LDRB tmp4, [ptrA],#1 ;// 1 row, 2 col 195 STRB tmp7, [mb,#8] ;// store row 2 col 1 197 STRB tmp2, [mb],#1 ;// store row 1 col 1 200 STRB tmp8, [mb,#8] ;// store row 2 col 2 202 STRB tmp5, [mb],#1 ;// store row 1 col [all...] |
| /libcore/luni/src/test/java/tests/api/org/xml/sax/helpers/ |
| LocatorImplTest.java | 30 public static final int ROW = 1; 48 inner.setLineNumber(ROW); 56 assertEquals(ROW, outer.getLineNumber()); 91 l.setLineNumber(ROW); 92 assertEquals(ROW, l.getLineNumber());
|
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/test/ |
| dump.py | 55 # iterdump() should be able to cope with unorderable row types (issue #15545) 57 def __init__(self, cursor, row): 58 self.row = row 60 return self.row[index]
|
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/test/ |
| dump.py | 55 # iterdump() should be able to cope with unorderable row types (issue #15545) 57 def __init__(self, cursor, row): 58 self.row = row 60 return self.row[index]
|
| /external/chromium_org/chrome/browser/resources/ |
| identity_internals.js | 57 var row = this.ownerDocument.createElement('tr'); 61 row.appendChild(labelField); 66 row.appendChild(valueField); 67 return row; 75 var row = this.ownerDocument.createElement('tr'); 79 row.appendChild(labelField); 87 row.appendChild(valueField); 88 return row; 97 var row = this.ownerDocument.createElement('tr'); 102 row.appendChild(buttonHolder) [all...] |
| /cts/apps/CtsVerifier/lib/colorchecker/ |
| imagetesthandler.cpp | 61 void ImageTestHandler::drawPoint(int row, int column, const Vec3i &color) { 62 if ((row >= 0) && (column >= 0) && 63 (column < mDebugWidth) && (row < mDebugHeight)) { 64 mDebugOutput[(row*mDebugWidth + column) * 4] = color.r(); 65 mDebugOutput[(row*mDebugWidth + column) * 4+1] = color.g(); 66 mDebugOutput[(row*mDebugWidth + column) * 4+2] = color.b(); 67 mDebugOutput[(row*mDebugWidth + column) * 4+3] = 255;
|
| /external/chromium/chrome/browser/ui/cocoa/ |
| task_manager_mac_unittest.mm | 69 cell = [controller tableView:table dataCellForTableColumn:title_column row:0]; 71 cell = [controller tableView:table dataCellForTableColumn:title_column row:1]; 73 cell = [controller tableView:table dataCellForTableColumn:title_column row:2]; 98 // Select row 0 in the table (corresponds to row 1 in the model). 102 // Change the name of resource2 so that it becomes row 1 in the table. 106 // Check that the selection has moved to row 1.
|
| /external/chromium/chrome/browser/ui/gtk/ |
| certificate_viewer.cc | 32 void AddTitle(GtkTable* table, int row, const std::string& text) { 36 row, row + 1); 39 void AddKeyValue(GtkTable* table, int row, const std::string& text, 45 0, 1, row, row + 1); 51 1, 2, row, row + 1); 217 int row = 0; local 220 AddTitle(table, row++ [all...] |
| /external/chromium-trace/trace-viewer/src/tracing/analysis/ |
| generic_object_view.js | 139 var row = document.createElement('div'); 145 row.appendChild(indentSpan); 149 row.appendChild(labelSpan); 151 row.appendChild(dataElement); 154 row.appendChild(suffixSpan); 156 row.dataElement = dataElement; 157 this.appendChild(row);
|
| /external/chromium_org/chrome/browser/ui/cocoa/ |
| task_manager_mac_unittest.mm | 79 cell = [controller tableView:table dataCellForTableColumn:title_column row:0]; 81 cell = [controller tableView:table dataCellForTableColumn:title_column row:1]; 83 cell = [controller tableView:table dataCellForTableColumn:title_column row:2]; 108 // Select row 0 in the table (corresponds to row 1 in the model). 112 // Change the name of resource2 so that it becomes row 1 in the table. 117 // Check that the selection has moved to row 1.
|
| /external/chromium_org/chrome/browser/ui/gtk/ |
| certificate_viewer_gtk.cc | 35 void AddTitle(GtkTable* table, int row, const std::string& text) { 39 row, row + 1); 42 void AddKeyValue(GtkTable* table, int row, const std::string& text, 48 0, 1, row, row + 1); 54 1, 2, row, row + 1); 227 int row = 0; local 230 AddTitle(table, row++ [all...] |
| /external/chromium_org/content/browser/resources/media/ |
| peer_connection_update_table.js | 71 * Adds the update to the update table as a new row. The type of the update 81 var row = document.createElement('tr'); 82 tableElement.firstChild.appendChild(row); 84 row.innerHTML = '<td>' + (new Date()).toLocaleString() + '</td>'; 87 row.innerHTML += '<td>' + update.type + '</td>'; 91 row.innerHTML += '<td><details><summary>' + update.type + 95 var details = row.cells[1].childNodes[0];
|