Home
last modified time | relevance | path

Searched refs:matchOne (Results 1 – 6 of 6) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DGlobPattern.cpp150 return matchOne(Tokens, S); in match()
154 bool GlobPattern::matchOne(ArrayRef<BitVector> Pats, StringRef S) const { in matchOne() function in GlobPattern
167 if (matchOne(Pats, S.substr(I))) in matchOne()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DGlobPattern.h35 bool matchOne(ArrayRef<BitVector> Pat, StringRef S) const;
/third_party/node/deps/npm/node_modules/minimatch/
Dminimatch.js742 var hit = this.matchOne(file, pattern, partial)
760 Minimatch.prototype.matchOne = function (file, pattern, partial) { method in Minimatch
833 if (this.matchOne(file.slice(fr), pattern.slice(pr), partial)) {
DREADME.md78 * `matchOne(fileArray, patternArray, partial)` Take a `/`-split
/third_party/node/tools/
Dlint-md.mjs24307 var hit = this.matchOne(file, pattern, partial);
24325 Minimatch$1.prototype.matchOne = function (file, pattern, partial) { method in Minimatch$1
24328 this.debug('matchOne',
24331 this.debug('matchOne', file.length, pattern.length);
24339 this.debug('matchOne loop');
24367 // - matchOne(b/x/y/z/c, b/**/c)
24370 // - matchOne(x/y/z/c, c) -> no
24371 // - matchOne(y/z/c, c) -> no
24372 // - matchOne(z/c, c) -> no
24373 // - matchOne(c, c) yes, hit
[all …]
/third_party/sqlite/src/
Dsqlite3.c125124 u8 matchOne; /* "?" or "_" */
125202 u32 matchOne = pInfo->matchOne; /* "?" or "_" */
125213 || (c == matchOne && matchOne!=0) ){
125214 if( c==matchOne && sqlite3Utf8Read(&zString)==0 ){
125318 if( c==matchOne && zPattern!=zEscaped && c2!=0 ) continue;
125420 if( escape==pInfo->matchAll || escape==pInfo->matchOne ){
125424 if( escape==pInfo->matchOne ) pInfo->matchOne = 0;
126508 assert( &((char*)&likeInfoAlt)[1] == (char*)&likeInfoAlt.matchOne );