Home | History | Annotate | Download | only in orig

Lines Matching defs:zGlob

11159 ** Compare the pattern in zGlob[] against the text in z[].  Return TRUE
11181 static int testcase_glob(const char *zGlob, const char *z){
11186 while( (c = (*(zGlob++)))!=0 ){
11189 while( IsSpace(*zGlob) ) zGlob++;
11192 while( (c=(*(zGlob++))) == '*' || c=='?' ){
11198 while( *z && testcase_glob(zGlob-1,z)==0 ){
11208 if( testcase_glob(zGlob,z) ) return 1;
11219 c2 = *(zGlob++);
11222 c2 = *(zGlob++);
11226 c2 = *(zGlob++);
11229 if( c2=='-' && zGlob[0]!=']' && zGlob[0]!=0 && prior_c>0 ){
11230 c2 = *(zGlob++);
11239 c2 = *(zGlob++);
11489 const char *zGlob = (const char*)sqlite3_column_text(pSql, 1);
11500 0==sqlite3_strglob(zGlob, zPlan)