resharper/resharper-unity/src/Unity.Shaders/CSharp/CodeCompletion/UnityCSharpShaderKeywordsCompletionProvider.cs [67:74]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - public override MatchingResult Match(PrefixMatcher prefixMatcher) { var matchingResult = prefixMatcher.Match(Text); if (matchingResult == null) return null; return new MatchingResult(matchingResult.MatchedIndices, matchingResult.AdjustedScore - 100, matchingResult.OriginalScore); } - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - resharper/resharper-unity/src/Unity/CSharp/Feature/Services/CodeCompletion/UnityUIElementsCompletionProvider.cs [68:75]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - public override MatchingResult Match(PrefixMatcher prefixMatcher) { var matchingResult = prefixMatcher.Match(Text); if (matchingResult == null) return null; return new MatchingResult(matchingResult.MatchedIndices, matchingResult.AdjustedScore - 100, matchingResult.OriginalScore); } - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - resharper/resharper-unity/src/Unity/CSharp/Feature/Services/CodeCompletion/UnityResourcesCompletionProvider.cs [88:95]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - public override MatchingResult Match(PrefixMatcher prefixMatcher) { var matchingResult = prefixMatcher.Match(Text); if (matchingResult == null) return null; return new MatchingResult(matchingResult.MatchedIndices, matchingResult.AdjustedScore - 100, matchingResult.OriginalScore); } - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - resharper/resharper-unity/src/Unity/Odin/Feature/Services/CodeCompletion/GroupingAttributes/OdinTabGroupAttributeCodeCompletionProvider.cs [135:142]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - public override MatchingResult Match(PrefixMatcher prefixMatcher) { var matchingResult = prefixMatcher.Match(Text); if (matchingResult == null) return null; return new MatchingResult(matchingResult.MatchedIndices, matchingResult.AdjustedScore - 100, matchingResult.OriginalScore); } - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - resharper/resharper-unity/src/Unity/Odin/Feature/Services/CodeCompletion/GroupingAttributes/OdinLayoutAttributesCodeCompletionProvider.cs [162:169]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - public override MatchingResult Match(PrefixMatcher prefixMatcher) { var matchingResult = prefixMatcher.Match(Text); if (matchingResult == null) return null; return new MatchingResult(matchingResult.MatchedIndices, matchingResult.AdjustedScore - 100, matchingResult.OriginalScore); } - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - resharper/resharper-unity/src/Unity/Odin/Feature/Services/CodeCompletion/Members/OdinMemberCodeCompletionProvider.cs [91:98]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - public override MatchingResult Match(PrefixMatcher prefixMatcher) { var matchingResult = prefixMatcher.Match(Text); if (matchingResult == null) return null; return new MatchingResult(matchingResult.MatchedIndices, matchingResult.AdjustedScore - 100, matchingResult.OriginalScore); } - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -