3 instantiations of TextChunk
Microsoft.CodeAnalysis.Workspaces (3)
PatternMatching\PatternMatcher.PatternSegment.cs (3)
23
public TextChunk TotalTextChunk = new
TextChunk
(text, allowFuzzyMatching);
99
result[resultIndex++] = new
TextChunk
(pattern.Substring(wordStart, wordLength), allowFuzzyMatching);
107
result[resultIndex++] = new
TextChunk
(pattern.Substring(wordStart, wordLength), allowFuzzyMatching);
11 references to TextChunk
Microsoft.CodeAnalysis.Workspaces (11)
PatternMatching\PatternMatcher.cs (6)
138
ref
TextChunk
patternChunk,
149
ref
TextChunk
patternChunk,
164
in
TextChunk
patternChunk,
455
in
TextChunk
patternChunk,
506
in
TextChunk
patternChunk,
516
in
TextChunk
patternChunk,
PatternMatching\PatternMatcher.PatternSegment.cs (5)
23
public
TextChunk
TotalTextChunk = new TextChunk(text, allowFuzzyMatching);
29
public readonly
TextChunk
[] SubWordTextChunks = BreakPatternIntoSubWords(text, allowFuzzyMatching);
34
foreach (
var
chunk in this.SubWordTextChunks)
71
private static
TextChunk
[] BreakPatternIntoSubWords(string pattern, bool allowFuzzyMatching)
80
var result = new
TextChunk
[partCount];