10 references to s_cacheDictionary
System.Text.RegularExpressions (10)
System\Text\RegularExpressions\Regex.Cache.cs (10)
62private static object SyncObj => s_cacheDictionary; 86s_cacheDictionary.Clear(); 100s_cacheDictionary.TryRemove(s_cacheList[i].Key, out _); 105Debug.Assert(s_cacheDictionary.Count == value); 173s_cacheDictionary.TryGetValue(key, out Node? node)) 199Debug.Assert(s_cacheList.Count == s_cacheDictionary.Count); 206if (s_maxCacheSize == 0 || s_cacheDictionary.TryGetValue(key, out _)) 254s_cacheDictionary.TryRemove(s_cacheList[minListIndex].Key, out _); 269s_cacheDictionary.TryAdd(key, node); 272Debug.Assert(s_cacheList.Count == s_cacheDictionary.Count);