HomeSort by relevance Sort by last modified time
    Searched refs:nrows (Results 1 - 15 of 15) sorted by null

  /external/javasqlite/src/main/java/SQLite/
TableResult.java 42 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++) {
Database.java 310 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/
TableResultX.java 29 this.nrows = tr.nrows;
JDBCDatabaseMetaData.java 612 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 <= 0)
    [all...]
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/qemu/android/utils/
misc.c 27 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;
stralloc.c 26 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;
  /hardware/broadcom/wlan/bcm4329/dhdutil/
dhdu.c 405 int nrows, i, len; local
413 for (cmd = dhd_cmds, nrows = 0; cmd->name; cmd++)
414 nrows++;
416 nrows /= 4;
417 nrows++;
419 len = nrows * 80 + 2;
439 if (row == nrows) {
445 for (row = 0; row < nrows; row++)
    [all...]
  /hardware/broadcom/wlan/bcmdhd/dhdutil/
dhdu.c 422 int nrows, i, len; local
430 for (cmd = dhd_cmds, nrows = 0; cmd->name; cmd++)
431 nrows++;
433 nrows /= 4;
434 nrows++;
436 len = nrows * 80 + 2;
456 if (row == nrows) {
462 for (row = 0; row < nrows; row++)
    [all...]
  /external/opencv/cxcore/src/
cxmatrix.cpp 551 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++ )
    [all...]
  /external/libpng/
pngwrite.c 973 png_set_flush(png_structp png_ptr, int nrows)
979 png_ptr->flush_dist = (nrows < 0 ? 0 : nrows);
    [all...]
png.h     [all...]
  /external/qemu/distrib/libpng-1.2.19/
pngwrite.c 935 png_set_flush(png_structp png_ptr, int nrows)
940 png_ptr->flush_dist = (nrows < 0 ? 0 : nrows);
    [all...]
png.h     [all...]
  /prebuilts/tools/common/jfreechart/
jcommon-1.0.12.jar 

Completed in 335 milliseconds