Lines Matching defs:zFrom
88726 char const *zFrom; /* Name of child table */
88727 int nFrom; /* Length in bytes of zFrom */
88811 zFrom = pFKey->pFrom->zName;
88812 nFrom = sqlite3Strlen30(zFrom);
88818 tFrom.z = zFrom;
88846 memcpy((char *)pStep->target.z, zFrom, nFrom);
123942 ** If the word ends with zFrom and xCond() is true for the stem
123943 ** of the word that preceeds the zFrom ending, then change the
123946 ** The input word *pz and zFrom are both in reverse order. zTo
123949 ** Return TRUE if zFrom matches. Return FALSE if zFrom does not
123955 const char *zFrom, /* If the ending matches this... (Reversed) */
123960 while( *zFrom && *zFrom==*z ){ z++; zFrom++; }
123961 if( *zFrom!=0 ) return 0;