Home | History | Annotate | Download | only in orig

Lines Matching refs:sqlite3_strnicmp

4776 ** ^Collation names that compare equal according to [sqlite3_strnicmp()] are
7186 ** ^The [sqlite3_stricmp()] and [sqlite3_strnicmp()] APIs allow applications
7192 SQLITE_API int sqlite3_strnicmp(const char *, const char *, int);
11470 #define sqlite3StrNICmp sqlite3_strnicmp
21265 ** sqlite3_strnicmp() APIs allow applications and extensions to compare
21277 SQLITE_API int sqlite3_strnicmp(const char *zLeft, const char *zRight, int N){
91407 #define sqlite3_strnicmp sqlite3_api->strnicmp
91766 sqlite3_strnicmp,
117711 assert( (sqlite3_strnicmp(argv[0], "fts4", 4)==0 && isFts4)
117712 || (sqlite3_strnicmp(argv[0], "fts3", 4)==0 && !isFts4)
117741 && 0==sqlite3_strnicmp(z, "tokenize", 8)
117768 if( nKey==pOp->nOpt && !sqlite3_strnicmp(z, pOp->zOpt, pOp->nOpt) ){
117778 if( strlen(zVal)!=4 || sqlite3_strnicmp(zVal, "fts3", 4) ){
117804 if( (strlen(zVal)!=3 || sqlite3_strnicmp(zVal, "asc", 3))
117805 && (strlen(zVal)!=4 || sqlite3_strnicmp(zVal, "desc", 4))
122813 && sqlite3_strnicmp(zStr, zInput, nStr)==0
128245 }else if( nVal==8 && 0==sqlite3_strnicmp(zVal, "optimize", 8) ){
128247 }else if( nVal==7 && 0==sqlite3_strnicmp(zVal, "rebuild", 7) ){
128250 }else if( nVal>9 && 0==sqlite3_strnicmp(zVal, "nodesize=", 9) ){
128253 }else if( nVal>11 && 0==sqlite3_strnicmp(zVal, "maxpending=", 9) ){