2 instantiations of TextChunk
Microsoft.CodeAnalysis.Workspaces (2)
PatternMatching\PatternMatcher.PatternSegment.cs (2)
102result[resultIndex++] = new TextChunk(pattern.Substring(wordStart, wordLength), allowFuzzyMatching); 110result[resultIndex++] = new TextChunk(pattern.Substring(wordStart, wordLength), allowFuzzyMatching);
11 references to TextChunk
Microsoft.CodeAnalysis.Workspaces (11)
PatternMatching\PatternMatcher.cs (6)
137ref TextChunk patternChunk, 148ref TextChunk patternChunk, 163in TextChunk patternChunk, 454in TextChunk patternChunk, 505in TextChunk patternChunk, 515in TextChunk patternChunk,
PatternMatching\PatternMatcher.PatternSegment.cs (5)
26public TextChunk TotalTextChunk = new TextChunk(text, allowFuzzyMatching); 32public readonly TextChunk[] SubWordTextChunks = BreakPatternIntoSubWords(text, allowFuzzyMatching); 37foreach (var chunk in this.SubWordTextChunks) 74private static TextChunk[] BreakPatternIntoSubWords(string pattern, bool allowFuzzyMatching) 83var result = new TextChunk[partCount];