Home
last modified time | relevance | path

Searched refs:sqlite3_strlike (Results 1 - 4 of 4) sorted by relevance

/third_party/sqlite/include/
H A Dsqlite3ext.h619 #define sqlite3_strlike sqlite3_api->strlike macro
H A Dsqlite3.h9258 ** See also: [sqlite3_strlike()].
9265 ** ^The [sqlite3_strlike(P,X,E)] interface returns zero if and only if
9268 ** [sqlite3_strlike(P,X,E)] is the same as for the "X LIKE P ESCAPE E"
9270 ** the ESCAPE clause, set the E parameter of [sqlite3_strlike(P,X,E)] to 0.
9271 ** ^As with the LIKE operator, the [sqlite3_strlike(P,X,E)] function is case
9275 ** ^The [sqlite3_strlike(P,X,E)] function matches Unicode characters, though
9283 SQLITE_API int sqlite3_strlike(const char *zGlob, const char *zStr, unsigned int cEsc);
/third_party/sqlite/src/
H A Dshell.c16640 if( sqlite3_strlike("CREATE VIEW%", azArg[0], 0)==0 in shell_callback()
16641 || sqlite3_strlike("CREATE TRIG%", azArg[0], 0)==0 in shell_callback()
19069 if( sqlite3_strlike(zPat, azHelp[i], 0)==0 ){ in showHelp()
19187 if( dfltZip && sqlite3_strlike("%.zip",zName,0)==0 ){ in deduceDatabaseType()
19208 }else if( n==0 && dfltZip && sqlite3_strlike("%.zip",zName,0)==0 ){ in deduceDatabaseType()
23977 int isSchema = sqlite3_strlike(zName, "sqlite_master", '\\')==0 in do_meta_command()
23978 || sqlite3_strlike(zName, "sqlite_schema", '\\')==0 in do_meta_command()
23979 || sqlite3_strlike(zName,"sqlite_temp_master", '\\')==0 in do_meta_command()
23980 || sqlite3_strlike(zName,"sqlite_temp_schema", '\\')==0; in do_meta_command()
24482 if( sqlite3_strlike("sqlit in do_meta_command()
[all...]
H A Dsqlite3.c9567 ** See also: [sqlite3_strlike()].
9574 ** ^The [sqlite3_strlike(P,X,E)] interface returns zero if and only if
9577 ** [sqlite3_strlike(P,X,E)] is the same as for the "X LIKE P ESCAPE E"
9579 ** the ESCAPE clause, set the E parameter of [sqlite3_strlike(P,X,E)] to 0.
9580 ** ^As with the LIKE operator, the [sqlite3_strlike(P,X,E)] function is case
9584 ** ^The [sqlite3_strlike(P,X,E)] function matches Unicode characters, though
9592 SQLITE_API int sqlite3_strlike(const char *zGlob, const char *zStr, unsigned int cEsc);
125555 SQLITE_API int sqlite3_strlike(const char *zPattern, const char *zStr, unsigned int esc){ global() function
132542 #define sqlite3_strlike global() macro
[all...]

Completed in 174 milliseconds