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)
127ref TextChunk patternChunk, 138ref TextChunk patternChunk, 153in TextChunk patternChunk, 424in TextChunk patternChunk, 475in TextChunk patternChunk, 485in 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];