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...]