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

  /external/chromium_org/third_party/sqlite/src/src/
vdbeblob.c 38 ** the b-tree cursor associated with blob handle p to point to row iRow.
53 static int blobSeekToRow(Incrblob *p, sqlite3_int64 iRow, char **pzErr){
58 /* Set the value of the SQL statements only variable to integer iRow.
63 v->aVar[0].u.i = iRow;
91 zErr = sqlite3MPrintf(p->db, "no such rowid: %lld", iRow);
113 sqlite_int64 iRow, /* The row containing the glob */
311 sqlite3_bind_int64(pBlob->pStmt, 1, iRow);
312 rc = blobSeekToRow(pBlob, iRow, &zErr);
436 int sqlite3_blob_reopen(sqlite3_blob *pBlob, sqlite3_int64 iRow){
452 rc = blobSeekToRow(p, iRow, &zErr)
    [all...]
tclsqlite.c 337 sqlite_int64 iRow,
350 rc = sqlite3_blob_open(db, zDb, zTable, zColumn, iRow, !isReadonly, &pBlob);
    [all...]
sqlite.h.in     [all...]
btree.c 465 ** rowid iRow is being replaced or deleted. In this case invalidate
470 i64 iRow, /* The rowid that might be changing */
477 if( p->isIncrblobHandle && (isClearTable || p->info.nKey==iRow) ){
    [all...]
  /external/chromium_org/third_party/sqlite/src/test/
threadtest3.c 1114 i64 iRow = 1;
1120 &err, &db, "REPLACE INTO t1 VALUES(:iRow, randomblob(300))", &iRow
1122 iRow++;
1123 if( iRow==10 ) iRow = 0;
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Eigen3f.java 289 int iRow, iCol, iMaxRow = -1;
290 for (iRow = 0; iRow < 3; iRow++) {
291 for (iCol = iRow; iCol < 3; iCol++) {
292 float fAbs = FastMath.abs(matrix.get(iRow, iCol));
295 iMaxRow = iRow;
  /external/chromium_org/third_party/sqlite/src/ext/fts1/
fulltext.c 679 /* select content from %_content where rowid = [iRow]
681 static int content_select(fulltext_vtab *v, sqlite_int64 iRow,
687 rc = sqlite3_bind_int64(s, 1, iRow);
704 /* delete from %_content where rowid = [iRow ] */
705 static int content_delete(fulltext_vtab *v, sqlite_int64 iRow){
710 rc = sqlite3_bind_int64(s, 1, iRow);
    [all...]
fts1.c     [all...]
  /external/sonivox/jet_tools/JetCreator/
JetUtils.py 400 for iRow in range(num):
401 track_num = list.GetTrackNumber(iRow)
402 if list.IsChecked(iRow):
412 for iRow in range(num):
413 track_num = list.GetTrackNumber(iRow)
414 if list.IsChecked(iRow):
JetCtrls.py 225 for iRow in range(num):
226 track_num = self.GetTrackNumber(iRow)
227 self.CheckItem(iRow, GetMute(track_num, muteFlags))
  /external/chromium_org/third_party/sqlite/src/ext/fts2/
fts2.c     [all...]
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.h     [all...]
sqlite3.c     [all...]
  /external/sqlite/dist/orig/
sqlite3.h     [all...]
sqlite3.c     [all...]
  /external/sqlite/dist/
sqlite3.h     [all...]
sqlite3.c     [all...]

Completed in 921 milliseconds