15 references to livecode
System (15)
regex\system\text\regularexpressions\Regex.cs (15)
498if (livecode.Count > cacheSize) { 499lock (livecode) { 500while (livecode.Count > cacheSize) 501livecode.RemoveLast(); 1330lock (livecode) { 1331for (LinkedListNode<CachedCodeEntry> current = livecode.First; current != null; current = current.Next) { 1334livecode.Remove(current); 1335livecode.AddFirst(current); 1350lock (livecode) { 1352for (LinkedListNode<CachedCodeEntry> current = livecode.First; current != null; current = current.Next) { 1354livecode.Remove(current); 1355livecode.AddFirst(current); 1363livecode.AddFirst(newcached); 1364if (livecode.Count > cacheSize) 1365livecode.RemoveLast();