Lines Matching defs:sqlite3_strnicmp

4950 ** ^Collation names that compare equal according to [sqlite3_strnicmp()] are
7434 ** ^The [sqlite3_stricmp()] and [sqlite3_strnicmp()] APIs allow applications
7440 SQLITE_API int sqlite3_strnicmp(const char *, const char *, int);
7453 ** do not match, the same as [sqlite3_stricmp()] and [sqlite3_strnicmp()].
11847 #define sqlite3StrNICmp sqlite3_strnicmp
21449 ** sqlite3_strnicmp() APIs allow applications and extensions to compare
21461 SQLITE_API int sqlite3_strnicmp(const char *zLeft, const char *zRight, int N){
80719 if( sqlite3_strnicmp(pTab->zName, "sqlite_", 7)==0 ){
92625 #define sqlite3_strnicmp sqlite3_api->strnicmp
93007 sqlite3_strnicmp,
93142 if( sqlite3_strnicmp(zFile+iFile, "lib", 3)==0 ) iFile += 3;
120382 assert( (sqlite3_strnicmp(argv[0], "fts4", 4)==0 && isFts4)
120383 || (sqlite3_strnicmp(argv[0], "fts3", 4)==0 && !isFts4)
120412 && 0==sqlite3_strnicmp(z, "tokenize", 8)
120439 if( nKey==pOp->nOpt && !sqlite3_strnicmp(z, pOp->zOpt, pOp->nOpt) ){
120449 if( strlen(zVal)!=4 || sqlite3_strnicmp(zVal, "fts3", 4) ){
120475 if( (strlen(zVal)!=3 || sqlite3_strnicmp(zVal, "asc", 3))
120476 && (strlen(zVal)!=4 || sqlite3_strnicmp(zVal, "desc", 4))
124733 if( nDb==4 && 0==sqlite3_strnicmp("temp", zDb, 4) ){
125666 && sqlite3_strnicmp(zStr, zInput, nStr)==0
133666 }else if( nVal==8 && 0==sqlite3_strnicmp(zVal, "optimize", 8) ){
133668 }else if( nVal==7 && 0==sqlite3_strnicmp(zVal, "rebuild", 7) ){
133670 }else if( nVal==15 && 0==sqlite3_strnicmp(zVal, "integrity-check", 15) ){
133672 }else if( nVal>6 && 0==sqlite3_strnicmp(zVal, "merge=", 6) ){
133674 }else if( nVal>10 && 0==sqlite3_strnicmp(zVal, "automerge=", 10) ){
133677 }else if( nVal>9 && 0==sqlite3_strnicmp(zVal, "nodesize=", 9) ){
133680 }else if( nVal>11 && 0==sqlite3_strnicmp(zVal, "maxpending=", 9) ){