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/ |
D | GlobPattern.cpp | 150 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/ |
D | GlobPattern.h | 35 bool matchOne(ArrayRef<BitVector> Pat, StringRef S) const;
|
/third_party/node/deps/npm/node_modules/minimatch/ |
D | minimatch.js | 742 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)) {
|
D | README.md | 78 * `matchOne(fileArray, patternArray, partial)` Take a `/`-split
|
/third_party/node/tools/ |
D | lint-md.mjs | 24307 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/ |
D | sqlite3.c | 125124 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 );
|