Searched refs:nrows (Results 1 - 18 of 18) sorted by relevance

/external/javasqlite/src/main/java/SQLite/
H A DTableResult.java42 public int nrows; field in class:TableResult
99 ncolumns = nrows = 0;
126 if (maxrows > 0 && nrows >= maxrows) {
131 nrows++;
148 for (i = 0; i < nrows; i++) {
H A DDatabase.java310 while (ret.nrows < ret.maxrows && vm.step(ret)) {
363 while (ret.nrows < ret.maxrows && vm.step(ret)) {
416 while (tbl.nrows < tbl.maxrows && vm.step(tbl)) {
/external/javasqlite/src/main/java/SQLite/JDBC2z/
H A DTableResultX.java29 this.nrows = tr.nrows;
H A DJDBCDatabaseMetaData.java612 if (rs0.tr.nrows < 1) {
635 if (rs0 != null && rs0.tr != null && rs0.tr.nrows > 0) {
644 for (int i = 0; i < rs0.tr.nrows; i++) {
765 if (rs0 != null && rs0.tr != null && rs0.tr.nrows > 0 &&
766 rs1 != null && rs1.tr != null && rs1.tr.nrows > 0) {
775 for (int i = 0; i < rs0.tr.nrows; i++) {
794 if (rs2 == null || rs2.tr == null || rs2.tr.nrows <= 0) {
802 for (int k = 0; k < rs2.tr.nrows; k++) {
806 for (int m = 0; m < rs1.tr.nrows; m++) {
825 if (tr.nrows <
[all...]
H A 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 <
[all...]
/external/qemu/android/utils/
H A Dmisc.c27 int nrows, ncols, r, c, n, maxw = 0; local
36 nrows = (count + ncols-1)/ncols;
38 for (r = 0; r < nrows; r++) {
41 int index = c*nrows + r;
H A Dstralloc.c26 int nrows, ncols, r, c, n, maxw = 0; local
35 nrows = (count + ncols-1)/ncols;
37 for (r = 0; r < nrows; r++) {
40 int index = c*nrows + r;
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/
H A Dpep8.py401 nrows = 1 + tokens[-1][2][0] - first_row
402 if noqa or nrows == 1:
414 parens = [0] * nrows
416 rel_indent = [0] * nrows
1116 path = nrows = None
1118 if nrows:
1120 nrows -= 1
1124 (row, nrows) = [int(g or '1') for g in hunk_match.groups()]
1125 rv[path].update(range(row, row + nrows))
H A Dautopep8.py178 nrows = 1 + tokens[-1][2][0] - first_row
179 if noqa or nrows == 1:
196 parens = [0] * nrows
199 rel_indent = [0] * nrows
/external/opencv/cxcore/src/
H A Dcxmatrix.cpp551 int i, j, nrows; local
555 nrows = matrix->rows;
561 int j0 = 0, j1 = nrows;
562 for( i = 0; i < nrows; i++ )
573 int j0 = 0, j1 = nrows;
574 for( i = 0; i < nrows; i++ )
/external/chromium_org/third_party/libpng/
H A Dpngwrite.c973 png_set_flush(png_structp png_ptr, int nrows) argument
979 png_ptr->flush_dist = (nrows < 0 ? 0 : nrows);
H A Dpng.h1826 extern PNG_EXPORT(void,png_set_flush) PNGARG((png_structp png_ptr, int nrows));
/external/qemu/distrib/libpng-1.2.46/
H A Dpngwrite.c973 png_set_flush(png_structp png_ptr, int nrows) argument
979 png_ptr->flush_dist = (nrows < 0 ? 0 : nrows);
H A Dpng.h1882 extern PNG_EXPORT(void,png_set_flush) PNGARG((png_structp png_ptr, int nrows));
/external/libpng/
H A Dpngwrite.c886 png_set_flush(png_structrp png_ptr, int nrows) argument
893 png_ptr->flush_dist = (nrows < 0 ? 0 : nrows);
H A Dpng.h1481 PNG_EXPORT(51, void, png_set_flush, (png_structrp png_ptr, int nrows));
/external/pdfium/core/src/fxge/ge/
H A Dfx_ge_text.cpp346 int nrows = pGlyph->GetHeight(); local
348 if (!bitmap.CompositeMask(left, top, ncols, nrows, pGlyph, fill_color,
372 for (int row = 0; row < nrows; row ++) {
685 for (int row = 0; row < nrows; row ++) {
/external/chromium_org/tools/telemetry/third_party/png/
H A Dpng.py645 nrows = self.write_passes(outfile, rows)
646 if nrows != self.height:
649 (nrows, self.height))

Completed in 562 milliseconds