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

  /external/chromium_org/third_party/sqlite/src/src/
alter.c 47 unsigned char const *zCsr = zSql;
61 if( !*zCsr ){
66 /* Store the token that zCsr points to in tname. */
67 tname.z = (char*)zCsr;
70 /* Advance zCsr to the next token. Store that token type in 'token',
74 zCsr += len;
75 len = sqlite3GetToken(zCsr, &token);
168 unsigned char const *zCsr = zSql;
183 if( !*zCsr ){
188 /* Store the token that zCsr points to in tname. *
    [all...]
vdbeaux.c     [all...]
vdbe.c 342 char *zCsr = zBuf;
363 sqlite3_snprintf(100, zCsr, "%c", c);
364 zCsr += sqlite3Strlen30(zCsr);
365 sqlite3_snprintf(100, zCsr, "%d[", pMem->n);
366 zCsr += sqlite3Strlen30(zCsr);
368 sqlite3_snprintf(100, zCsr, "%02X", ((int)pMem->z[i] & 0xFF));
369 zCsr += sqlite3Strlen30(zCsr);
    [all...]
  /external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3.c 658 const char *zCsr = z;
660 while( *zCsr!='=' ){
661 if( *zCsr=='\0' ) return 0;
662 zCsr++;
665 *pnKey = (int)(zCsr-z);
666 zValue = sqlite3_mprintf("%s", &zCsr[1]);
837 char *zCsr; /* Space for holding column names */
    [all...]

Completed in 31 milliseconds