Home
last modified time | relevance | path

Searched refs:nrows (Results 1 – 14 of 14) sorted by relevance

/external/javasqlite/src/main/java/SQLite/
DTableResult.java42 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()
DDatabase.java310 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()
DShell.java401 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/
DJDBCDatabaseMetaData.java612 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 …]
DTableResultX.java29 this.nrows = tr.nrows; in TableResultX()
DJDBCResultSet.java104 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/
Dcxmatrix.cpp551 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/
DBigMatrixImpl.java854 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/
Dfx_pngwrite.c820 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()
Dpng.h1790 PNG_EXPORT(51, void, png_set_flush, (png_structrp png_ptr, int nrows));
/external/libpng/
Dpngwrite.c886 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()
Dpng.h1481 PNG_EXPORT(51, void, png_set_flush, (png_structrp png_ptr, int nrows));
Dlibpng-manual.txt3525 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/
Dfx_ge_text.cpp321 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()