Home
last modified time | relevance | path

Searched refs:zGlob (Results 1 - 3 of 3) sorted by relevance

/third_party/sqlite/include/
H A Dsqlite3.h9260 SQLITE_API int sqlite3_strglob(const char *zGlob, const char *zStr);
9283 SQLITE_API int sqlite3_strlike(const char *zGlob, const char *zStr, unsigned int cEsc);
/third_party/sqlite/src/
H A Dshell.c20432 ** Compare the pattern in zGlob[] against the text in z[]. Return TRUE
20454 static int testcase_glob(const char *zGlob, const char *z){ in testcase_glob() argument
20459 while( (c = (*(zGlob++)))!=0 ){ in testcase_glob()
20462 while( IsSpace(*zGlob) ) zGlob++; in testcase_glob()
20465 while( (c=(*(zGlob++))) == '*' || c=='?' ){ in testcase_glob()
20471 while( *z && testcase_glob(zGlob-1,z)==0 ){ in testcase_glob()
20481 if( testcase_glob(zGlob,z) ) return 1; in testcase_glob()
20492 c2 = *(zGlob++); in testcase_glob()
20495 c2 = *(zGlob in testcase_glob()
20771 const char *zGlob = (const char*)sqlite3_column_text(pSql, 1); lintFkeyIndexes() local
[all...]
H A Dsqlite3.c9569 SQLITE_API int sqlite3_strglob(const char *zGlob, const char *zStr);
9592 SQLITE_API int sqlite3_strlike(const char *zGlob, const char *zStr, unsigned int cEsc);
[all...]

Completed in 177 milliseconds