Home
last modified time | relevance | path

Searched refs:zFrom (Results 1 – 3 of 3) sorted by relevance

/netbsd-src/usr.sbin/makemandb/
H A Dcustom_apropos_tokenizer.c320 const char *zFrom, /* If the ending matches this... (Reversed) */ in stem() argument
326 while (*zFrom && *zFrom == *z) { in stem()
328 zFrom++; in stem()
330 if (*zFrom != 0) in stem()
/netbsd-src/external/public-domain/sqlite/dist/
H A Dsqlite3.c131889 char const *zFrom; /* Name of child table */
131978 zFrom = pFKey->pFrom->zName;
131979 nFrom = sqlite3Strlen30(zFrom);
131993 pSrc->a[0].zName = sqlite3DbStrDup(db, zFrom);
132016 memcpy((char *)pStep->zTarget, zFrom, nFrom);
193237 const char *zFrom, /* If the ending matches this... (Reversed) */
193242 while( *zFrom && *zFrom==*z ){ z++; zFrom++; }
193243 if( *zFrom!=0 ) return 0;
225167 const char *zFrom,
225173 pSession->zDb, zFrom, pTab->zName, pTab->azCol, pTab->abPK
[all …]
H A Dshell.c23514 const char *zFrom = (const char*)sqlite3_column_text(pSql, 2); in lintFkeyIndexes() local
23548 zIndent, zFrom, zTarget in lintFkeyIndexes()