Home
last modified time | relevance | path

Searched refs:zGlob (Results 1 – 5 of 5) sorted by relevance

/sqlite-3.40.0/mptest/
H A Dmptest.c136 int strglob(const char *zGlob, const char *z){ in strglob() argument
141 while( (c = (*(zGlob++)))!=0 ){ in strglob()
143 while( (c=(*(zGlob++))) == '*' || c=='?' ){ in strglob()
149 while( *z && strglob(zGlob-1,z) ){ in strglob()
159 if( strglob(zGlob,z) ) return 1; in strglob()
170 c2 = *(zGlob++); in strglob()
173 c2 = *(zGlob++); in strglob()
177 c2 = *(zGlob++); in strglob()
180 if( c2=='-' && zGlob[0]!=']' && zGlob[0]!=0 && prior_c>0 ){ in strglob()
181 c2 = *(zGlob++); in strglob()
[all …]
/sqlite-3.40.0/src/
H A Dtest_quota.c256 static int quotaStrglob(const char *zGlob, const char *z){ in quotaStrglob() argument
261 while( (c = (*(zGlob++)))!=0 ){ in quotaStrglob()
263 while( (c=(*(zGlob++))) == '*' || c=='?' ){ in quotaStrglob()
269 while( *z && quotaStrglob(zGlob-1,z)==0 ){ in quotaStrglob()
280 if( quotaStrglob(zGlob,z) ) return 1; in quotaStrglob()
291 c2 = *(zGlob++); in quotaStrglob()
294 c2 = *(zGlob++); in quotaStrglob()
298 c2 = *(zGlob++); in quotaStrglob()
301 if( c2=='-' && zGlob[0]!=']' && zGlob[0]!=0 && prior_c>0 ){ in quotaStrglob()
302 c2 = *(zGlob++); in quotaStrglob()
[all …]
H A Dtest_tclvar.c199 const char *zGlob = ""; in tclvarFilter() local
213 zGlob = (const char*)sqlite3_value_text(argv[i]); in tclvarFilter()
229 Tcl_ListObjAppendElement(0, p, Tcl_NewStringObj(zGlob, -1)); in tclvarFilter()
H A Dshell.c.in6055 while( (c = (*(zGlob++)))!=0 ){
6058 while( IsSpace(*zGlob) ) zGlob++;
6061 while( (c=(*(zGlob++))) == '*' || c=='?' ){
6077 if( testcase_glob(zGlob,z) ) return 1;
6088 c2 = *(zGlob++);
6091 c2 = *(zGlob++);
6095 c2 = *(zGlob++);
6098 if( c2=='-' && zGlob[0]!=']' && zGlob[0]!=0 && prior_c>0 ){
6099 c2 = *(zGlob++);
6108 c2 = *(zGlob++);
[all …]
H A Dsqlite.h.in9208 int sqlite3_strglob(const char *zGlob, const char *zStr);
9231 int sqlite3_strlike(const char *zGlob, const char *zStr, unsigned int cEsc);