28 references to GetMaxUsedIndex
mscorlib (28)
system\security\permissionset.cs (22)
236for (int i = m_permSet.GetStartingIndex(); i <= m_permSet.GetMaxUsedIndex(); i++) 578for (int i = m_permSet.GetStartingIndex(); i <= this.m_permSet.GetMaxUsedIndex(); ++i) 785int maxMax = this.m_permSet == null ? -1 : this.m_permSet.GetMaxUsedIndex(); 786int otherMax = other.m_permSet == null ? -1 : other.m_permSet.GetMaxUsedIndex(); 948int thisMax = this.m_permSet == null ? -1 : this.m_permSet.GetMaxUsedIndex(); 949int otherMax = other.m_permSet == null ? -1 : other.m_permSet.GetMaxUsedIndex(); 1131maxMax = other.m_permSet.GetMaxUsedIndex(); 1258maxMax = this.m_permSet.GetMaxUsedIndex() > other.m_permSet.GetMaxUsedIndex() ? this.m_permSet.GetMaxUsedIndex() : other.m_permSet.GetMaxUsedIndex(); 1375int maxIndex = denied.m_permSet.GetMaxUsedIndex() > this.m_permSet.GetMaxUsedIndex() ? this.m_permSet.GetMaxUsedIndex() : denied.m_permSet.GetMaxUsedIndex(); 1440int maxIndex = Math.Max( this.m_permSet.GetMaxUsedIndex(), other.m_permSet.GetMaxUsedIndex() ); 1482int maxIndex = this.m_permSet.GetMaxUsedIndex(); 1530for (int i = m_permSet.GetStartingIndex(); i <= this.m_permSet.GetMaxUsedIndex(); ++i) 1648for (int i = m_permSet.GetStartingIndex(); i <= this.m_permSet.GetMaxUsedIndex(); ++i) 1697int maxIndex = m_permSet.GetMaxUsedIndex(); 2194int maxIndex = this.m_permSet.GetMaxUsedIndex();
system\security\util\tokenbasedset.cs (6)
368maxMax = this.GetMaxUsedIndex() > other.GetMaxUsedIndex() ? this.GetMaxUsedIndex() : other.GetMaxUsedIndex(); 371maxMax = this.GetMaxUsedIndex(); 435int maxIndex = GetMaxUsedIndex();