Lines Matching refs:zGlob
11181 static int testcase_glob(const char *zGlob, const char *z){ in testcase_glob() argument
11186 while( (c = (*(zGlob++)))!=0 ){ in testcase_glob()
11189 while( IsSpace(*zGlob) ) zGlob++; in testcase_glob()
11192 while( (c=(*(zGlob++))) == '*' || c=='?' ){ in testcase_glob()
11198 while( *z && testcase_glob(zGlob-1,z)==0 ){ in testcase_glob()
11208 if( testcase_glob(zGlob,z) ) return 1; in testcase_glob()
11219 c2 = *(zGlob++); in testcase_glob()
11222 c2 = *(zGlob++); in testcase_glob()
11226 c2 = *(zGlob++); in testcase_glob()
11229 if( c2=='-' && zGlob[0]!=']' && zGlob[0]!=0 && prior_c>0 ){ in testcase_glob()
11230 c2 = *(zGlob++); in testcase_glob()
11239 c2 = *(zGlob++); in testcase_glob()
11489 const char *zGlob = (const char*)sqlite3_column_text(pSql, 1); in lintFkeyIndexes() local
11500 0==sqlite3_strglob(zGlob, zPlan) in lintFkeyIndexes()