10 references to s_cacheDictionary
System.Text.RegularExpressions (10)
System\Text\RegularExpressions\Regex.Cache.cs (10)
82private static object SyncObj => s_cacheDictionary; 106s_cacheDictionary.Clear(); 120s_cacheDictionary.TryRemove(s_cacheList[i].Key, out _); 125Debug.Assert(s_cacheDictionary.Count == value); 193s_cacheDictionary.TryGetValue(key, out Node? node)) 219Debug.Assert(s_cacheList.Count == s_cacheDictionary.Count); 226if (s_maxCacheSize == 0 || s_cacheDictionary.TryGetValue(key, out _)) 274s_cacheDictionary.TryRemove(s_cacheList[minListIndex].Key, out _); 289s_cacheDictionary.TryAdd(key, node); 292Debug.Assert(s_cacheList.Count == s_cacheDictionary.Count);