1 write to _matchers
Microsoft.TemplateEngine.Utils (1)
Glob.cs (1)
20
_matchers
= matchers;
7 references to _matchers
Microsoft.TemplateEngine.Utils (7)
Glob.cs (7)
21
_isNameOnlyMatch = canBeNameOnlyMatch && !
_matchers
.Any(x => x is PathMatcher || x is ExactPathMatcher || (x as LiteralMatcher)?.Char?.FirstOrDefault() == '/');
149
IMatcher matcher =
_matchers
[currentMatcher];
154
if ((currentMatcher <
_matchers
.Count - 1 && matcher.ProducesCheckpoint && matcher.MinConsume == 0) || matcher.CanConsume(test, i, out i))
158
if (currentMatcher <
_matchers
.Count - 1 && matcher.ProducesCheckpoint)
165
if (currentMatcher <
_matchers
.Count)
181
if (currentMatcher ==
_matchers
.Count && i == test.Length)
212
return i == test.Length && currentMatcher ==
_matchers
.Count;