18 references to Lookup
System.Private.CoreLib (18)
src\libraries\System.Private.CoreLib\src\System\SearchValues\AsciiByteSearchValues.cs (2)
36_state.Lookup.GetByteValues(); 40_state.Lookup.Contains(value);
src\libraries\System.Private.CoreLib\src\System\SearchValues\AsciiCharSearchValues.cs (2)
37_state.Lookup.GetCharValues(); 41_state.Lookup.Contains256(value);
src\libraries\System.Private.CoreLib\src\System\SearchValues\IndexOfAnyAsciiSearcher.cs (5)
23new AsciiState(~Bitmap._lower, Lookup.CreateInverse()); 300if (TNegator.NegateIfNeeded(state.Lookup.Contains256(c))) 432if (TNegator.NegateIfNeeded(state.Lookup.Contains256(c))) 585if (TNegator.NegateIfNeeded(state.Lookup.Contains(b))) 710if (TNegator.NegateIfNeeded(state.Lookup.Contains(b)))
src\libraries\System.Private.CoreLib\src\System\SearchValues\ProbabilisticWithAsciiCharSearchValues.cs (8)
53Debug.Assert(_asciiState.Lookup.Contains(0) != _inverseAsciiState.Lookup.Contains(0)); 57Debug.Assert(_inverseAsciiState.Lookup.Contains(0), "The inverse bitmap did not contain a 0."); 66Debug.Assert(!(Ssse3.IsSupported || PackedSimd.IsSupported) || !_inverseAsciiState.Lookup.Contains(0), 150Debug.Assert(_asciiState.Lookup.Contains(0) != _inverseAsciiState.Lookup.Contains(0)); 156Debug.Assert(_inverseAsciiState.Lookup.Contains(0), "The inverse bitmap did not contain a 0."); 165Debug.Assert(!(Ssse3.IsSupported || PackedSimd.IsSupported) || !_inverseAsciiState.Lookup.Contains(0),
src\libraries\System.Private.CoreLib\src\System\SearchValues\Strings\Helpers\AhoCorasick.cs (1)
52if (_startingAsciiChars.Lookup.Contains256((char)i))