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

  /dalvik/libcore/sql/src/main/java/SQLite/
TableResult.java 42 public int nrows; field in class:TableResult
78 ncolumns = nrows = 0;
105 nrows++;
122 for (i = 0; i < nrows; i++) {
  /dalvik/libcore/sql/src/main/java/SQLite/JDBC2y/
TableResultX.java 21 this.nrows = tr.nrows;
JDBCDatabaseMetaData.java 624 if (rs0 != null && rs0.tr != null && rs0.tr.nrows > 0) {
633 for (int i = 0; i < rs0.tr.nrows; i++) {
750 if (rs0 != null && rs0.tr != null && rs0.tr.nrows > 0 &&
751 rs1 != null && rs1.tr != null && rs1.tr.nrows > 0) {
760 for (int i = 0; i < rs0.tr.nrows; i++) {
779 if (rs2 == null || rs2.tr == null || rs2.tr.nrows <= 0) {
787 for (int k = 0; k < rs2.tr.nrows; k++) {
791 for (int m = 0; m < rs1.tr.nrows; m++) {
810 if (tr.nrows <= 0) {
869 if (rs0 != null && rs0.tr != null && rs0.tr.nrows > 0)
    [all...]
JDBCResultSet.java 47 return row < tr.nrows;
77 row = tr.nrows + 1 + row;
80 if (row < 0 || row > tr.nrows) {
91 if (this.row + row < 0 || this.row + row >= tr.nrows) {
588 if (tr == null || tr.nrows <= 0) {
602 if (tr == null || tr.nrows <= 0) {
610 if (tr == null || tr.nrows <= 0) {
613 return row >= tr.nrows;
620 row = tr.nrows;
627 return row == tr.nrows - 1
    [all...]
  /external/qemu/android/utils/
misc.c 24 int nrows, ncols, r, c, n, maxw = 0; local
33 nrows = (count + ncols-1)/ncols;
35 for (r = 0; r < nrows; r++) {
38 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/src/dhd/exe/
dhdu.c 368 int nrows, i, len; local
376 for (cmd = dhd_cmds, nrows = 0; cmd->name; cmd++)
377 nrows++;
379 nrows /= 4;
380 nrows++;
382 len = nrows * 80 + 2;
402 if (row == nrows) {
408 for (row = 0; row < nrows; row++)
    [all...]
  /external/libpng/
pngwrite.c 972 png_set_flush(png_structp png_ptr, int nrows)
978 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...]
  /prebuilt/common/jfreechart/
jcommon-1.0.12.jar 

Completed in 4910 milliseconds