Lines Matching refs:sqlite3_strglob
9557 ** ^The [sqlite3_strglob(P,X)] interface returns zero if and only if
9560 ** [sqlite3_strglob(P,X)] is the same as for the "X GLOB P" operator in the
9561 ** SQL dialect understood by SQLite. ^The [sqlite3_strglob(P,X)] function
9569 SQLITE_API int sqlite3_strglob(const char *zGlob, const char *zStr);
9590 ** See also: [sqlite3_strglob()].
116111 if( sqlite3_strglob("unordered*", z)==0 ){
116113 }else if( sqlite3_strglob("sz=[0-9]*", z)==0 ){
116117 }else if( sqlite3_strglob("noskipscan*", z)==0 ){
116121 else if( sqlite3_strglob("costmult=[0-9]*",z)==0 ){
125538 ** The sqlite3_strglob() interface. Return 0 on a match (like strcmp()) and
125541 SQLITE_API int sqlite3_strglob(const char *zGlobPattern, const char *zString){
132531 #define sqlite3_strglob sqlite3_api->strglob
133036 sqlite3_strglob,