Lines Matching refs:zGlob
6028 ** Compare the pattern in zGlob[] against the text in z[]. Return TRUE
6050 static int testcase_glob(const char *zGlob, const char *z){ argument
6055 while( (c = (*(zGlob++)))!=0 ){
6058 while( IsSpace(*zGlob) ) zGlob++;
6061 while( (c=(*(zGlob++))) == '*' || c=='?' ){
6067 while( *z && testcase_glob(zGlob-1,z)==0 ){
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++);
6367 const char *zGlob = (const char*)sqlite3_column_text(pSql, 1); local
6374 if( zGlob==0 ) continue;
6379 res = zPlan!=0 && ( 0==sqlite3_strglob(zGlob, zPlan)