2 instantiations of TextChunk
Microsoft.CodeAnalysis.Workspaces (2)
PatternMatching\PatternMatcher.PatternSegment.cs (2)
99result[resultIndex++] = new TextChunk(pattern.Substring(wordStart, wordLength), allowFuzzyMatching); 107result[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)
23public TextChunk TotalTextChunk = new TextChunk(text, allowFuzzyMatching); 29public readonly TextChunk[] SubWordTextChunks = BreakPatternIntoSubWords(text, allowFuzzyMatching); 34foreach (var chunk in this.SubWordTextChunks) 71private static TextChunk[] BreakPatternIntoSubWords(string pattern, bool allowFuzzyMatching) 80var result = new TextChunk[partCount];