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

  /external/chromium_org/third_party/sqlite/src/src/
test_fuzzer.c 128 int nFrom, nTo; /* Length of the zFrom and zTo strings */
129 char *zFrom; /* Transform from */
444 || memcmp(&pStem->zBasis[pStem->n], pRule->zFrom, pRule->nFrom)==0
688 pCur->nullRule.zFrom = "";
809 const char *zFrom;
826 zFrom = (char*)sqlite3_value_text(argv[4]);
827 if( zFrom==0 ) zFrom = "";
830 if( strcmp(zFrom,zTo)==0 ){
840 nFrom = strlen(zFrom);
    [all...]
fkey.c     [all...]
  /external/chromium_org/third_party/sqlite/src/ext/fts1/
fts1_porter.c 257 ** If the word ends with zFrom and xCond() is true for the stem
258 ** of the word that preceeds the zFrom ending, then change the
261 ** The input word *pz and zFrom are both in reverse order. zTo
264 ** Return TRUE if zFrom matches. Return FALSE if zFrom does not
270 const char *zFrom, /* If the ending matches this... (Reversed) */
275 while( *zFrom && *zFrom==*z ){ z++; zFrom++; }
276 if( *zFrom!=0 ) return 0
    [all...]
fts1.c 78 static void nappend(StringBuffer *sb, const char *zFrom, int nFrom){
87 memcpy(sb->s + sb->len, zFrom, nFrom);
91 static void append(StringBuffer *sb, const char *zFrom){
92 nappend(sb, zFrom, strlen(zFrom));
    [all...]
  /external/chromium_org/third_party/sqlite/src/ext/fts2/
fts2_porter.c 256 ** If the word ends with zFrom and xCond() is true for the stem
257 ** of the word that preceeds the zFrom ending, then change the
260 ** The input word *pz and zFrom are both in reverse order. zTo
263 ** Return TRUE if zFrom matches. Return FALSE if zFrom does not
269 const char *zFrom, /* If the ending matches this... (Reversed) */
274 while( *zFrom && *zFrom==*z ){ z++; zFrom++; }
275 if( *zFrom!=0 ) return 0
    [all...]
fts2.c 576 static void nappend(StringBuffer *sb, const char *zFrom, int nFrom){
580 dataBufferAppend2(&sb->b, zFrom, nFrom, "", 1);
583 static void append(StringBuffer *sb, const char *zFrom){
584 nappend(sb, zFrom, strlen(zFrom));
    [all...]
  /external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3_porter.c 259 ** If the word ends with zFrom and xCond() is true for the stem
260 ** of the word that preceeds the zFrom ending, then change the
263 ** The input word *pz and zFrom are both in reverse order. zTo
266 ** Return TRUE if zFrom matches. Return FALSE if zFrom does not
272 const char *zFrom, /* If the ending matches this... (Reversed) */
277 while( *zFrom && *zFrom==*z ){ z++; zFrom++; }
278 if( *zFrom!=0 ) return 0
    [all...]
  /external/chromium_org/third_party/sqlite/src/test/
threadtest3.c 794 const char *zFrom,
798 i64 nByte = filesize_x(pErr, zFrom);
800 test_error_x(pErr, sqlite3_mprintf("no such file: %s", zFrom));
808 fd1 = open(zFrom, O_RDONLY);
    [all...]

Completed in 837 milliseconds