Home | History | Annotate | Download | only in fts2

Lines Matching refs:zFrom

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;