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