Lines Matching refs:zGlob
20432 ** Compare the pattern in zGlob[] against the text in z[]. Return TRUE
20454 static int testcase_glob(const char *zGlob, const char *z){
20459 while( (c = (*(zGlob++)))!=0 ){
20462 while( IsSpace(*zGlob) ) zGlob++;
20465 while( (c=(*(zGlob++))) == '*' || c=='?' ){
20471 while( *z && testcase_glob(zGlob-1,z)==0 ){
20481 if( testcase_glob(zGlob,z) ) return 1;
20492 c2 = *(zGlob++);
20495 c2 = *(zGlob++);
20499 c2 = *(zGlob++);
20502 if( c2=='-' && zGlob[0]!=']' && zGlob[0]!=0 && prior_c>0 ){
20503 c2 = *(zGlob++);
20512 c2 = *(zGlob++);
20771 const char *zGlob = (const char*)sqlite3_column_text(pSql, 1);
20778 if( zGlob==0 ) continue;
20783 res = zPlan!=0 && ( 0==sqlite3_strglob(zGlob, zPlan)