Lines Matching refs:zGlob
11204 static int testcase_glob(const char *zGlob, const char *z){ in testcase_glob() argument
11209 while( (c = (*(zGlob++)))!=0 ){ in testcase_glob()
11212 while( IsSpace(*zGlob) ) zGlob++; in testcase_glob()
11215 while( (c=(*(zGlob++))) == '*' || c=='?' ){ in testcase_glob()
11221 while( *z && testcase_glob(zGlob-1,z)==0 ){ in testcase_glob()
11231 if( testcase_glob(zGlob,z) ) return 1; in testcase_glob()
11242 c2 = *(zGlob++); in testcase_glob()
11245 c2 = *(zGlob++); in testcase_glob()
11249 c2 = *(zGlob++); in testcase_glob()
11252 if( c2=='-' && zGlob[0]!=']' && zGlob[0]!=0 && prior_c>0 ){ in testcase_glob()
11253 c2 = *(zGlob++); in testcase_glob()
11262 c2 = *(zGlob++); in testcase_glob()
11512 const char *zGlob = (const char*)sqlite3_column_text(pSql, 1); in lintFkeyIndexes() local
11523 0==sqlite3_strglob(zGlob, zPlan) in lintFkeyIndexes()