Home
last modified time | relevance | path

Searched refs:zGlob (Results 1 – 4 of 4) sorted by relevance

/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/etc/c/
H A Dsqlite3.d1822 int sqlite3_strglob(const(char)* zGlob, const(char)* zStr);
1827 int sqlite3_strlike(const(char)* zGlob, const(char)* zStr, uint cEsc);
/netbsd-src/external/public-domain/sqlite/dist/
H A Dsqlite3.h9463 SQLITE_API int sqlite3_strglob(const char *zGlob, const char *zStr);
9486 SQLITE_API int sqlite3_strlike(const char *zGlob, const char *zStr, unsigned int cEsc);
H A Dshell.c23199 static int testcase_glob(const char *zGlob, const char *z){ in testcase_glob() argument
23204 while( (c = (*(zGlob++)))!=0 ){ in testcase_glob()
23207 while( IsSpace(*zGlob) ) zGlob++; in testcase_glob()
23210 while( (c=(*(zGlob++))) == '*' || c=='?' ){ in testcase_glob()
23216 while( *z && testcase_glob(zGlob-1,z)==0 ){ in testcase_glob()
23226 if( testcase_glob(zGlob,z) ) return 1; in testcase_glob()
23237 c2 = *(zGlob++); in testcase_glob()
23240 c2 = *(zGlob++); in testcase_glob()
23244 c2 = *(zGlob++); in testcase_glob()
23247 if( c2=='-' && zGlob[0]!=']' && zGlob[0]!=0 && prior_c>0 ){ in testcase_glob()
[all …]
H A Dsqlite3.c9776 SQLITE_API int sqlite3_strglob(const char *zGlob, const char *zStr);
9799 SQLITE_API int sqlite3_strlike(const char *zGlob, const char *zStr, unsigned int cEsc);