3 instantiations of TextChunk
Microsoft.CodeAnalysis.Workspaces (3)
PatternMatching\PatternMatcher.PatternSegment.cs (3)
23
public TextChunk TotalTextChunk =
new
(text);
99
result[resultIndex++] = new
TextChunk
(pattern.Substring(wordStart, wordLength));
107
result[resultIndex++] = new
TextChunk
(pattern.Substring(wordStart, wordLength));
9 references to TextChunk
Microsoft.CodeAnalysis.Workspaces (9)
PatternMatching\PatternMatcher.cs (4)
148
in
TextChunk
patternChunk,
428
in
TextChunk
patternChunk,
479
in
TextChunk
patternChunk,
489
in
TextChunk
patternChunk,
PatternMatching\PatternMatcher.PatternSegment.cs (5)
23
public
TextChunk
TotalTextChunk = new(text);
29
public readonly
TextChunk
[] SubWordTextChunks = BreakPatternIntoSubWords(text);
34
foreach (
var
chunk in this.SubWordTextChunks)
71
private static
TextChunk
[] BreakPatternIntoSubWords(string pattern)
80
var result = new
TextChunk
[partCount];