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 | 9891 SQLITE_API int sqlite3_strnicmp(const char *, const char *, int);
|
| H A D | shell.c | 11264 && sqlite3_strnicmp(pCur->zPrefix, pCur->zCurrentRow, pCur->nPrefix)==0 in completionNext() 17589 if( (nToken==3 && 0==sqlite3_strnicmp(zToken, "ASC", nToken)) in intckParseCreateIndex() 17590 || (nToken==4 && 0==sqlite3_strnicmp(zToken, "DESC", nToken)) in intckParseCreateIndex() 17604 if( n==5 && 0==sqlite3_strnicmp(&z[iOff], "where", 5) ){ in intckParseCreateIndex() 18867 if( sqlite3_strnicmp(aKw[jj].z,(const char*)zArg,n)==0 ){ in vfstraceFileControl() 25791 && sqlite3_strnicmp("WHERE",&z[i],5)==0 in shellFormatSchema() 25796 && sqlite3_strnicmp("AND",&z[i],3)==0 in shellFormatSchema() 29559 if( n>1 && sqlite3_strnicmp("-verbose", azArg[i], n)==0 ){ in lintFkeyIndexes() 29562 else if( n>1 && sqlite3_strnicmp("-groupbyparent", azArg[i], n)==0 ){ in lintFkeyIndexes() 29662 if( n<1 || sqlite3_strnicmp(azArg[1], "fkey-indexes", n) ) goto usage; in lintDotCommand() [all …]
|
| H A D | sqlite3.c | 10212 SQLITE_API int sqlite3_strnicmp(const char *, const char *, int); 21723 #define sqlite3StrNICmp sqlite3_strnicmp 26337 if( sqlite3_strnicmp(z, "weekday ", 8)==0 in parseModifier() 26366 if( sqlite3_strnicmp(z, "start of ", 9)!=0 ){ in parseModifier() 26514 && sqlite3_strnicmp(aXformType[i].zName, z, n)==0 in parseModifier() 36823 SQLITE_API int sqlite3_strnicmp(const char *zLeft, const char *zRight, int N){ in sqlite3_strnicmp() function 117171 if( sqlite3_strnicmp(z,"0x",2)==0 ){ 126966 if( pMod==0 && sqlite3_strnicmp(zName, "pragma_", 7)==0 ){ 126970 if( pMod==0 && sqlite3_strnicmp(zName, "json", 4)==0 ){ 127935 if( sqlite3_strnicmp(pCol->zCnName, "__hidden__", 10)==0 ){ [all …]
|