Lines Matching refs:dot

607       // that dot prevention biz to live in the extglob portions, because eg
619 const dot = allowDot ?? !!__privateGet(this, _options).dot;
639 dot && aps.has(src.charAt(0)) || // the pattern starts with \., and then [ or .
643 const needNoDot = !dot && !allowDot && aps.has(src.charAt(0));
662 let body = __privateMethod(this, _partsToRegExp, partsToRegExp_fn).call(this, dot);
670 let bodyDotAllowed = !repeated || allowDot || dot || !startNoDot ? "" : __privateMethod(this, _partsToRegExp, partsToRegExp_fn).call(this, true);
679 final = (this.isStart() && !dot ? startNoDot : "") + starNoEmpty;
683 "))" + (this.isStart() && !dot && !allowDot ? startNoDot : "") + star2 + ")"
843 partsToRegExp_fn = function(dot) {
848 const [re, _, _hasMagic2, uflag] = p.toRegExpSource(dot);
1380 } else if (a[ai] === "*" && b[bi] && (this.options.dot || !b[bi].startsWith(".")) && b[bi] !== "**") {
1387 } else if (b[bi] === "*" && a[ai] && (this.options.dot || !a[ai].startsWith(".")) && a[ai] !== "**") {
1461 if (file[fi] === "." || file[fi] === ".." || !options.dot && file[fi].charAt(0) === ".")
1473 if (swallowee === "." || swallowee === ".." || !options.dot && swallowee.charAt(0) === ".") {
1474 this.debug("dot detected!", file, fr, pattern, pr);
1523 fastTest = options.dot ? starTestDot : starTest;
1525 fastTest = (options.nocase ? options.dot ? starDotExtTestNocaseDot : starDotExtTestNocase : options.dot ? starDotExtTestDot : starDotExtTest)(m[1]);
1527 fastTest = (options.nocase ? options.dot ? qmarksTestNocaseDot : qmarksTestNocase : options.dot ? qmarksTestDot : qmarksTest)(m);
1529 fastTest = options.dot ? starDotStarTestDot : starDotStarTest;
1545 const twoStar = options.noglobstar ? star : options.dot ? twoStarDot : twoStarNoDot;