Home
last modified time | relevance | path

Searched refs:globParts (Results 1 – 18 of 18) sorted by relevance

/third_party/node/deps/npm/node_modules/minimatch/dist/mjs/
Dindex.js191 globParts; field in Minimatch
299 this.globParts[i][2] === '?' &&
313 preprocess(globParts) { argument
316 for (let i = 0; i < globParts.length; i++) {
317 for (let j = 0; j < globParts[i].length; j++) {
318 if (globParts[i][j] === '**') {
319 globParts[i][j] = '*';
327 globParts = this.firstPhasePreProcess(globParts);
328 globParts = this.secondPhasePreProcess(globParts);
332 globParts = this.levelOneOptimize(globParts);
[all …]
/third_party/node/deps/minimatch/src/dist/mjs/
Dindex.js191 globParts; field in Minimatch
299 this.globParts[i][2] === '?' &&
313 preprocess(globParts) { argument
316 for (let i = 0; i < globParts.length; i++) {
317 for (let j = 0; j < globParts[i].length; j++) {
318 if (globParts[i][j] === '**') {
319 globParts[i][j] = '*';
327 globParts = this.firstPhasePreProcess(globParts);
328 globParts = this.secondPhasePreProcess(globParts);
332 globParts = this.levelOneOptimize(globParts);
[all …]
Dindex.d.ts65 globParts: string[][]; property in Minimatch
75 preprocess(globParts: string[][]): string[][];
76 adjascentGlobstarOptimize(globParts: string[][]): string[][];
77 levelOneOptimize(globParts: string[][]): string[][];
79 firstPhasePreProcess(globParts: string[][]): string[][];
80 secondPhasePreProcess(globParts: string[][]): string[][];
Dindex.js.map1globParts: string[][]\n nocase: boolean\n\n isWindows: boolean\n platform: Platform\n windowsN…
/third_party/node/deps/minimatch/src/dist/cjs/
Dindex.js203 globParts; field in Minimatch
311 this.globParts[i][2] === '?' &&
325 preprocess(globParts) { argument
328 for (let i = 0; i < globParts.length; i++) {
329 for (let j = 0; j < globParts[i].length; j++) {
330 if (globParts[i][j] === '**') {
331 globParts[i][j] = '*';
339 globParts = this.firstPhasePreProcess(globParts);
340 globParts = this.secondPhasePreProcess(globParts);
344 globParts = this.levelOneOptimize(globParts);
[all …]
Dindex.d.ts65 globParts: string[][]; property in Minimatch
75 preprocess(globParts: string[][]): string[][];
76 adjascentGlobstarOptimize(globParts: string[][]): string[][];
77 levelOneOptimize(globParts: string[][]): string[][];
79 firstPhasePreProcess(globParts: string[][]): string[][];
80 secondPhasePreProcess(globParts: string[][]): string[][];
Dindex.js.map1globParts: string[][]\n nocase: boolean\n\n isWindows: boolean\n platform: Platform\n windowsN…
/third_party/node/deps/npm/node_modules/minimatch/dist/cjs/
Dindex.js203 globParts; field in Minimatch
311 this.globParts[i][2] === '?' &&
325 preprocess(globParts) { argument
328 for (let i = 0; i < globParts.length; i++) {
329 for (let j = 0; j < globParts[i].length; j++) {
330 if (globParts[i][j] === '**') {
331 globParts[i][j] = '*';
339 globParts = this.firstPhasePreProcess(globParts);
340 globParts = this.secondPhasePreProcess(globParts);
344 globParts = this.levelOneOptimize(globParts);
[all …]
/third_party/node/deps/npm/node_modules/glob/dist/esm/
Dignore.js52 const globParts = mm.globParts[i];
54 if (!parsed || !globParts) {
58 const p = new Pattern(parsed, globParts, 0, platform);
60 const children = globParts[globParts.length - 1] === '**';
Dignore.js.map1globParts\n // as an option, and then we could at least just use Pattern to test\n // for ab…
Dglob.js156 const [matchSet, globParts] = mms.reduce((set, m) => {
158 set[1].push(...m.globParts);
162 const g = globParts[i];
Dglob.js.map1globParts'], undefined>\n\n// if no process global, just call it linux.\n// so we default to case-…
/third_party/node/deps/npm/node_modules/glob/dist/commonjs/
Dignore.js55 const globParts = mm.globParts[i];
57 if (!parsed || !globParts) {
61 const p = new pattern_js_1.Pattern(parsed, globParts, 0, platform);
63 const children = globParts[globParts.length - 1] === '**';
Dignore.js.map1globParts\n // as an option, and then we could at least just use Pattern to test\n // for ab…
Dglob.js159 const [matchSet, globParts] = mms.reduce((set, m) => {
161 set[1].push(...m.globParts);
165 const g = globParts[i];
Dglob.js.map1globParts'], undefined>\n\n// if no process global, just call it linux.\n// so we default to case-…
/third_party/node/deps/npm/node_modules/ignore-walk/lib/
Dindex.js234 const isRelativeRule = entryBasename && rule.globParts.some(part =>
/third_party/node/deps/minimatch/
Dindex.js1079 globParts; field in Minimatch