Lines Matching defs:zGlob
24441 ** Compare the pattern in zGlob[] against the text in z[]. Return TRUE
24463 static int testcase_glob(const char *zGlob, const char *z){
24468 while( (c = (*(zGlob++)))!=0 ){
24471 while( IsSpace(*zGlob) ) zGlob++;
24474 while( (c=(*(zGlob++))) == '*' || c=='?' ){
24480 while( *z && testcase_glob(zGlob-1,z)==0 ){
24490 if( testcase_glob(zGlob,z) ) return 1;
24501 c2 = *(zGlob++);
24504 c2 = *(zGlob++);
24508 c2 = *(zGlob++);
24511 if( c2=='-' && zGlob[0]!=']' && zGlob[0]!=0 && prior_c>0 ){
24512 c2 = *(zGlob++);
24521 c2 = *(zGlob++);
24777 const char *zGlob = (const char*)sqlite3_column_text(pSql, 1);
24784 if( zGlob==0 ) continue;
24789 res = zPlan!=0 && ( 0==sqlite3_strglob(zGlob, zPlan)