Searched refs:sqlite3_strnicmp (Results 1 – 4 of 4) sorted by relevance
| /freebsd/contrib/sqlite3/ |
| H A D | sqlite3ext.h | 585 #define sqlite3_strnicmp sqlite3_api->strnicmp macro
|
| H A D | sqlite3.h | 9889 SQLITE_API int sqlite3_strnicmp(const char *, const char *, int);
|
| H A D | shell.c | 11233 && sqlite3_strnicmp(pCur->zPrefix, pCur->zCurrentRow, pCur->nPrefix)==0 in completionNext() 17551 if( (nToken==3 && 0==sqlite3_strnicmp(zToken, "ASC", nToken)) in intckParseCreateIndex() 17552 || (nToken==4 && 0==sqlite3_strnicmp(zToken, "DESC", nToken)) in intckParseCreateIndex() 17566 if( n==5 && 0==sqlite3_strnicmp(&z[iOff], "where", 5) ){ in intckParseCreateIndex() 18829 if( sqlite3_strnicmp(aKw[jj].z,(const char*)zArg,n)==0 ){ in vfstraceFileControl() 25753 && sqlite3_strnicmp("WHERE",&z[i],5)==0 in shellFormatSchema() 25758 && sqlite3_strnicmp("AND",&z[i],3)==0 in shellFormatSchema() 29521 if( n>1 && sqlite3_strnicmp("-verbose", azArg[i], n)==0 ){ in lintFkeyIndexes() 29524 else if( n>1 && sqlite3_strnicmp("-groupbyparent", azArg[i], n)==0 ){ in lintFkeyIndexes() 29624 if( n<1 || sqlite3_strnicmp(azArg[1], "fkey-indexes", n) ) goto usage; in lintDotCommand() [all …]
|
| H A D | sqlite3.c | 10210 SQLITE_API int sqlite3_strnicmp(const char *, const char *, int); 21701 #define sqlite3StrNICmp sqlite3_strnicmp 26307 if( sqlite3_strnicmp(z, "weekday ", 8)==0 in parseModifier() 26336 if( sqlite3_strnicmp(z, "start of ", 9)!=0 ){ in parseModifier() 26484 && sqlite3_strnicmp(aXformType[i].zName, z, n)==0 in parseModifier() 36793 SQLITE_API int sqlite3_strnicmp(const char *zLeft, const char *zRight, int N){ in sqlite3_strnicmp() function 116986 if( sqlite3_strnicmp(z,"0x",2)==0 ){ 126758 if( pMod==0 && sqlite3_strnicmp(zName, "pragma_", 7)==0 ){ 126762 if( pMod==0 && sqlite3_strnicmp(zName, "json", 4)==0 ){ 127727 if( sqlite3_strnicmp(pCol->zCnName, "__hidden__", 10)==0 ){ [all …]
|