Lines Matching defs:zFrom
88762 char const *zFrom; /* Name of child table */
88763 int nFrom; /* Length in bytes of zFrom */
88847 zFrom = pFKey->pFrom->zName;
88848 nFrom = sqlite3Strlen30(zFrom);
88854 tFrom.z = zFrom;
88882 memcpy((char *)pStep->target.z, zFrom, nFrom);
123990 ** If the word ends with zFrom and xCond() is true for the stem
123991 ** of the word that preceeds the zFrom ending, then change the
123994 ** The input word *pz and zFrom are both in reverse order. zTo
123997 ** Return TRUE if zFrom matches. Return FALSE if zFrom does not
124003 const char *zFrom, /* If the ending matches this... (Reversed) */
124008 while( *zFrom && *zFrom==*z ){ z++; zFrom++; }
124009 if( *zFrom!=0 ) return 0;