Lines Matching refs:match
35 // node_modules/balanced-match/index.js
37 "node_modules/balanced-match/index.js"(exports2, module2) {
55 var m = str.match(reg);
172 if (m.post.match(/,.*\}/)) {
549 // returns the string match, the regexp source, whether there's magic
608 // +(*|.x*) can match .xy but not .yx.
682 // !() must match something,but !(x) can match ''
924 exports.unescape = exports.escape = exports.AST = exports.Minimatch = exports.match = exports.makeRe = exports.braceExpand = exports.defaults = exports.filter = exports.GLOBSTAR = exports.sep = exports.minimatch = void 0;
935 return new Minimatch(pattern, options).match(p);
1036 match: (list, pattern, options = {}) => orig.match(list, pattern, ext(def, options)),
1055 var match = (list, pattern, options = {}) => {
1057 list = list.filter((f) => mm.match(f));
1063 exports.match = match;
1064 exports.minimatch.match = exports.match;
1418 // the parts match.
1470 this.debug("globstar found match!", fr, fl, swallowee);
1482 this.debug("\n>>> no match, partial?", file, fr, pattern, pr);
1492 this.debug("string match", p, f, hit);
1495 this.debug("pattern match", p, f, hit);
1522 if (m = pattern.match(starRE)) {
1524 } else if (m = pattern.match(starDotExtRE)) {
1526 } else if (m = pattern.match(qmarksRE)) {
1528 } else if (m = pattern.match(starDotStarRE)) {
1530 } else if (m = pattern.match(dotStarRE)) {
1596 match(f, partial = this.partial) {
1597 this.debug("match", f, this.pattern);