Searched refs:nrows (Results 1 – 14 of 14) sorted by relevance
/external/javasqlite/src/main/java/SQLite/ |
D | TableResult.java | 42 public int nrows; field in TableResult 99 ncolumns = nrows = 0; in clear() 126 if (maxrows > 0 && nrows >= maxrows) { in newrow() 131 nrows++; in newrow() 148 for (i = 0; i < nrows; i++) { in toString()
|
D | Database.java | 310 while (ret.nrows < ret.maxrows && vm.step(ret)) { in get_table() 363 while (ret.nrows < ret.maxrows && vm.step(ret)) { in get_table() 416 while (tbl.nrows < tbl.maxrows && vm.step(tbl)) { in get_table()
|
D | Shell.java | 401 for (i = 0; i < t.nrows; i++) { in do_meta() 670 for (int i = 0; i < t.nrows; i++) { in newrow()
|
/external/javasqlite/src/main/java/SQLite/JDBC2z/ |
D | JDBCDatabaseMetaData.java | 612 if (rs0.tr.nrows < 1) { in getColumns() 635 if (rs0 != null && rs0.tr != null && rs0.tr.nrows > 0) { in getColumns() 644 for (int i = 0; i < rs0.tr.nrows; i++) { in getColumns() 765 if (rs0 != null && rs0.tr != null && rs0.tr.nrows > 0 && in getBestRowIdentifier() 766 rs1 != null && rs1.tr != null && rs1.tr.nrows > 0) { in getBestRowIdentifier() 775 for (int i = 0; i < rs0.tr.nrows; i++) { in getBestRowIdentifier() 794 if (rs2 == null || rs2.tr == null || rs2.tr.nrows <= 0) { in getBestRowIdentifier() 802 for (int k = 0; k < rs2.tr.nrows; k++) { in getBestRowIdentifier() 806 for (int m = 0; m < rs1.tr.nrows; m++) { in getBestRowIdentifier() 825 if (tr.nrows <= 0) { in getBestRowIdentifier() [all …]
|
D | TableResultX.java | 29 this.nrows = tr.nrows; in TableResultX()
|
D | JDBCResultSet.java | 104 if (pk.tr.nrows > 0) { 106 pkcols = new String[pk.tr.nrows]; 107 pkcoli = new int[pk.tr.nrows]; 108 for (int i = 0; i < pk.tr.nrows; i++) { 148 return row < tr.nrows; 178 row = tr.nrows + 1 + row; 181 if (row < 0 || row > tr.nrows) { 192 if (this.row + row < 0 || this.row + row >= tr.nrows) { 759 if (tr == null || tr.nrows <= 0) { 773 if (tr == null || tr.nrows <= 0) { [all …]
|
/external/opencv/cxcore/src/ |
D | cxmatrix.cpp | 551 int i, j, nrows; in cvCompleteSymm() local 555 nrows = matrix->rows; in cvCompleteSymm() 561 int j0 = 0, j1 = nrows; in cvCompleteSymm() 562 for( i = 0; i < nrows; i++ ) in cvCompleteSymm() 573 int j0 = 0, j1 = nrows; in cvCompleteSymm() 574 for( i = 0; i < nrows; i++ ) in cvCompleteSymm()
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/ |
D | BigMatrixImpl.java | 854 final int nrows = this.getRowDimension(); in getColumnAsDoubleArray() local 855 final double[] out = new double[nrows]; in getColumnAsDoubleArray() 856 for (int i=0;i<nrows;i++) { in getColumnAsDoubleArray()
|
/external/pdfium/samples/fx_lpng/lpng_v163/ |
D | fx_pngwrite.c | 820 png_set_flush(png_structrp png_ptr, int nrows) in png_set_flush() argument 827 png_ptr->flush_dist = (nrows < 0 ? 0 : nrows); in png_set_flush()
|
D | png.h | 1790 PNG_EXPORT(51, void, png_set_flush, (png_structrp png_ptr, int nrows));
|
/external/libpng/ |
D | pngwrite.c | 886 png_set_flush(png_structrp png_ptr, int nrows) in png_set_flush() argument 893 png_ptr->flush_dist = (nrows < 0 ? 0 : nrows); in png_set_flush()
|
D | png.h | 1481 PNG_EXPORT(51, void, png_set_flush, (png_structrp png_ptr, int nrows));
|
D | libpng-manual.txt | 3525 png_set_flush(png_ptr, nrows); 3532 If nrows is too small (less than about 10 lines for a 640 pixel wide
|
/external/pdfium/core/src/fxge/ge/ |
D | fx_ge_text.cpp | 321 int nrows = pGlyph->GetHeight(); in DrawNormalText() local 323 if (!bitmap.CompositeMask(left, top, ncols, nrows, pGlyph, fill_color, in DrawNormalText() 347 for (int row = 0; row < nrows; row ++) { in DrawNormalText() 660 for (int row = 0; row < nrows; row ++) { in DrawNormalText()
|