HomeSort by: relevance | last modified time | path
    Searched refs:sqlite3_strnicmp (Results 1 - 4 of 4) sorted by relevancy

  /src/external/public-domain/sqlite/dist/
sqlite3ext.h 585 #define sqlite3_strnicmp sqlite3_api->strnicmp macro
sqlite3.h 6643 ** ^Collation names that compare equal according to [sqlite3_strnicmp()] are
9883 ** ^The [sqlite3_stricmp()] and [sqlite3_strnicmp()] APIs allow applications
9889 SQLITE_API int sqlite3_strnicmp(const char *, const char *, int);
9902 ** do not match, the same as [sqlite3_stricmp()] and [sqlite3_strnicmp()].
9925 ** do not match, the same as [sqlite3_stricmp()] and [sqlite3_strnicmp()].
sqlite3.c 6964 ** ^Collation names that compare equal according to [sqlite3_strnicmp()] are
10204 ** ^The [sqlite3_stricmp()] and [sqlite3_strnicmp()] APIs allow applications
10210 SQLITE_API int sqlite3_strnicmp(const char *, const char *, int);
10223 ** do not match, the same as [sqlite3_stricmp()] and [sqlite3_strnicmp()].
10246 ** do not match, the same as [sqlite3_stricmp()] and [sqlite3_strnicmp()].
21729 #define sqlite3StrNICmp sqlite3_strnicmp
36797 SQLITE_API int sqlite3_strnicmp(const char *zLeft, const char *zRight, int N){ function
142805 #define sqlite3_strnicmp macro
    [all...]
shell.c 11233 && sqlite3_strnicmp(pCur->zPrefix, pCur->zCurrentRow, pCur->nPrefix)==0
17551 if( (nToken==3 && 0==sqlite3_strnicmp(zToken, "ASC", nToken))
17552 || (nToken==4 && 0==sqlite3_strnicmp(zToken, "DESC", nToken))
17566 if( n==5 && 0==sqlite3_strnicmp(&z[iOff], "where", 5) ){
18829 if( sqlite3_strnicmp(aKw[jj].z,(const char*)zArg,n)==0 ){
25729 && sqlite3_strnicmp("WHERE",&z[i],5)==0
25734 && sqlite3_strnicmp("AND",&z[i],3)==0
29497 if( n>1 && sqlite3_strnicmp("-verbose", azArg[i], n)==0 ){
29500 else if( n>1 && sqlite3_strnicmp("-groupbyparent", azArg[i], n)==0 ){
29600 if( n<1 || sqlite3_strnicmp(azArg[1], "fkey-indexes", n) ) goto usage
    [all...]

Completed in 86 milliseconds