HomeSort by relevance Sort by last modified time
    Searched full:nrows (Results 1 - 25 of 39) sorted by null

1 2

  /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)) {
Shell.java 401 for (i = 0; i < t.nrows; i++) {
670 for (int i = 0; i < t.nrows; i++) {
  /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/eigen/unsupported/test/
FFTW.cpp 184 template <typename T,int nrows,int ncols>
189 Eigen::Matrix<Complex,nrows,ncols> src,src2,dst,dst2;
191 src = Eigen::Matrix<Complex,nrows,ncols>::Random();
192 //src = Eigen::Matrix<Complex,nrows,ncols>::Identity();
195 Eigen::Matrix<Complex,nrows,1> tmpOut;
200 for (int k=0;k<nrows;k++) {
206 fft.fwd2(dst.data(),src.data(),ncols,nrows);
207 fft.inv2(src2.data(),dst.data(),ncols,nrows);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
cmd.py 369 for nrows in range(1, len(list)):
370 ncols = (size+nrows-1) // nrows
375 for row in range(nrows):
376 i = row + nrows*col
388 nrows = len(list)
391 for row in range(nrows):
394 i = row + nrows*col
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
cmd.py 369 for nrows in range(1, len(list)):
370 ncols = (size+nrows-1) // nrows
375 for row in range(nrows):
376 i = row + nrows*col
388 nrows = len(list)
391 for row in range(nrows):
394 i = row + nrows*col
  /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;
  /external/opencv/cv/src/
cvmorph.cpp     [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...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/extensions/
XKBgeom.h 585 int /* nRows */
XKBproto.h 662 CARD8 nRows;
688 CARD8 nRows;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/extensions/
XKBgeom.h 585 int /* nRows */
XKBproto.h 662 CARD8 nRows;
688 CARD8 nRows;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/extensions/
XKBgeom.h 585 int /* nRows */
XKBproto.h 662 CARD8 nRows;
688 CARD8 nRows;
  /hardware/broadcom/wlan/bcmdhd/dhdutil/
dhdu.c 429 int nrows, i, len; local
437 for (cmd = dhd_cmds, nrows = 0; cmd->name; cmd++)
438 nrows++;
440 nrows /= 4;
441 nrows++;
443 len = nrows * 80 + 2;
463 if (row == nrows) {
469 for (row = 0; row < nrows; row++)
    [all...]
  /external/chromium_org/third_party/libpng/
pngwrite.c 973 png_set_flush(png_structp png_ptr, int nrows)
979 png_ptr->flush_dist = (nrows < 0 ? 0 : nrows);
    [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...]
  /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...]
  /external/chromium_org/third_party/iaccessible2/
ia2_api_all.idl     [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/login/
user_pod_row.js     [all...]

Completed in 872 milliseconds

1 2