Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / Xml / System / Xml / Dom / DomNameTable.cs / 1 / DomNameTable.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- using System; using System.Diagnostics; using System.Xml.Schema; namespace System.Xml { internal class DomNameTable { XmlName[] entries; int count; int mask; XmlDocument ownerDocument; XmlNameTable nameTable; const int InitialSize = 64; // must be a power of two public DomNameTable( XmlDocument document ) { ownerDocument = document; nameTable = document.NameTable; entries = new XmlName[InitialSize]; mask = InitialSize - 1; Debug.Assert( ( entries.Length & mask ) == 0 ); // entries.Length must be a power of two } public XmlName GetName(string prefix, string localName, string ns, IXmlSchemaInfo schemaInfo) { if (prefix == null) { prefix = string.Empty; } if (ns == null) { ns = string.Empty; } int hashCode = XmlName.GetHashCode(localName); for (XmlName e = entries[hashCode & mask]; e != null; e = e.next) { if (e.HashCode == hashCode && ((object)e.LocalName == (object)localName || e.LocalName.Equals(localName)) && ((object)e.Prefix == (object)prefix || e.Prefix.Equals(prefix)) && ((object)e.NamespaceURI == (object)ns || e.NamespaceURI.Equals(ns)) && e.Equals(schemaInfo)) { return e; } } return null; } public XmlName AddName(string prefix, string localName, string ns, IXmlSchemaInfo schemaInfo) { if (prefix == null) { prefix = string.Empty; } if (ns == null) { ns = string.Empty; } int hashCode = XmlName.GetHashCode(localName); for (XmlName e = entries[hashCode & mask]; e != null; e = e.next) { if (e.HashCode == hashCode && ((object)e.LocalName == (object)localName || e.LocalName.Equals(localName)) && ((object)e.Prefix == (object)prefix || e.Prefix.Equals(prefix)) && ((object)e.NamespaceURI == (object)ns || e.NamespaceURI.Equals(ns)) && e.Equals(schemaInfo)) { return e; } } prefix = nameTable.Add(prefix); localName = nameTable.Add(localName); ns = nameTable.Add(ns); int index = hashCode & mask; XmlName name = XmlName.Create(prefix, localName, ns, hashCode, ownerDocument, entries[index], schemaInfo); entries[index] = name; if (count++ == mask) { Grow(); } return name; } private void Grow() { int newMask = mask * 2 + 1; XmlName[] oldEntries = entries; XmlName[] newEntries = new XmlName[newMask+1]; // use oldEntries.Length to eliminate the rangecheck for ( int i = 0; i < oldEntries.Length; i++ ) { XmlName name = oldEntries[i]; while ( name != null ) { int newIndex = name.HashCode & newMask; XmlName tmp = name.next; name.next = newEntries[newIndex]; newEntries[newIndex] = name; name = tmp; } } entries = newEntries; mask = newMask; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- using System; using System.Diagnostics; using System.Xml.Schema; namespace System.Xml { internal class DomNameTable { XmlName[] entries; int count; int mask; XmlDocument ownerDocument; XmlNameTable nameTable; const int InitialSize = 64; // must be a power of two public DomNameTable( XmlDocument document ) { ownerDocument = document; nameTable = document.NameTable; entries = new XmlName[InitialSize]; mask = InitialSize - 1; Debug.Assert( ( entries.Length & mask ) == 0 ); // entries.Length must be a power of two } public XmlName GetName(string prefix, string localName, string ns, IXmlSchemaInfo schemaInfo) { if (prefix == null) { prefix = string.Empty; } if (ns == null) { ns = string.Empty; } int hashCode = XmlName.GetHashCode(localName); for (XmlName e = entries[hashCode & mask]; e != null; e = e.next) { if (e.HashCode == hashCode && ((object)e.LocalName == (object)localName || e.LocalName.Equals(localName)) && ((object)e.Prefix == (object)prefix || e.Prefix.Equals(prefix)) && ((object)e.NamespaceURI == (object)ns || e.NamespaceURI.Equals(ns)) && e.Equals(schemaInfo)) { return e; } } return null; } public XmlName AddName(string prefix, string localName, string ns, IXmlSchemaInfo schemaInfo) { if (prefix == null) { prefix = string.Empty; } if (ns == null) { ns = string.Empty; } int hashCode = XmlName.GetHashCode(localName); for (XmlName e = entries[hashCode & mask]; e != null; e = e.next) { if (e.HashCode == hashCode && ((object)e.LocalName == (object)localName || e.LocalName.Equals(localName)) && ((object)e.Prefix == (object)prefix || e.Prefix.Equals(prefix)) && ((object)e.NamespaceURI == (object)ns || e.NamespaceURI.Equals(ns)) && e.Equals(schemaInfo)) { return e; } } prefix = nameTable.Add(prefix); localName = nameTable.Add(localName); ns = nameTable.Add(ns); int index = hashCode & mask; XmlName name = XmlName.Create(prefix, localName, ns, hashCode, ownerDocument, entries[index], schemaInfo); entries[index] = name; if (count++ == mask) { Grow(); } return name; } private void Grow() { int newMask = mask * 2 + 1; XmlName[] oldEntries = entries; XmlName[] newEntries = new XmlName[newMask+1]; // use oldEntries.Length to eliminate the rangecheck for ( int i = 0; i < oldEntries.Length; i++ ) { XmlName name = oldEntries[i]; while ( name != null ) { int newIndex = name.HashCode & newMask; XmlName tmp = name.next; name.next = newEntries[newIndex]; newEntries[newIndex] = name; name = tmp; } } entries = newEntries; mask = newMask; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- RectKeyFrameCollection.cs
- UserMapPath.cs
- WebPartTransformer.cs
- ViewManager.cs
- DragCompletedEventArgs.cs
- FilterElement.cs
- SelectedDatesCollection.cs
- CodeSnippetStatement.cs
- SessionEndingEventArgs.cs
- Pair.cs
- DllNotFoundException.cs
- TypeGeneratedEventArgs.cs
- Block.cs
- ImageKeyConverter.cs
- HttpListenerResponse.cs
- ImageCodecInfo.cs
- InputBuffer.cs
- TextServicesPropertyRanges.cs
- WebScriptMetadataMessage.cs
- ButtonBase.cs
- XmlSchemaAttributeGroupRef.cs
- login.cs
- EnterpriseServicesHelper.cs
- Parser.cs
- InvalidComObjectException.cs
- SafeNativeMethods.cs
- SHA256CryptoServiceProvider.cs
- CodeNamespaceImportCollection.cs
- MaterialCollection.cs
- PostBackOptions.cs
- x509store.cs
- TableItemStyle.cs
- PaperSize.cs
- TextFormatterImp.cs
- RegistrationServices.cs
- CompiledRegexRunner.cs
- SizeIndependentAnimationStorage.cs
- HtmlInputHidden.cs
- DebugControllerThread.cs
- HuffModule.cs
- LayoutTableCell.cs
- RuleConditionDialog.Designer.cs
- SelectionProcessor.cs
- ListBoxItem.cs
- DispatcherSynchronizationContext.cs
- DbParameterCollectionHelper.cs
- CompleteWizardStep.cs
- InstalledFontCollection.cs
- Viewport3DVisual.cs
- Panel.cs
- DisableDpiAwarenessAttribute.cs
- OptimizedTemplateContent.cs
- WindowsRichEdit.cs
- FocusWithinProperty.cs
- DataGridColumn.cs
- ControlParameter.cs
- MemberCollection.cs
- SHA384Managed.cs
- XmlElement.cs
- SmtpFailedRecipientException.cs
- OutputCacheSettings.cs
- SecurityPermission.cs
- RegexGroup.cs
- TypedColumnHandler.cs
- TransportSecurityBindingElement.cs
- FixedSOMPage.cs
- RandomNumberGenerator.cs
- PerformanceCounterTraceRecord.cs
- GradientStopCollection.cs
- IisTraceWebEventProvider.cs
- TypeDescriptionProviderAttribute.cs
- UIPermission.cs
- SafeArrayRankMismatchException.cs
- RenderData.cs
- EmbeddedMailObject.cs
- ScrollChrome.cs
- Typography.cs
- DebugInfoExpression.cs
- TableLayoutPanel.cs
- FileDialog.cs
- ChannelAcceptor.cs
- SafeThemeHandle.cs
- UdpSocketReceiveManager.cs
- PageWrapper.cs
- DataControlImageButton.cs
- PointKeyFrameCollection.cs
- ErrorWebPart.cs
- SqlInternalConnectionSmi.cs
- TypeInfo.cs
- TableStyle.cs
- CreateDataSourceDialog.cs
- SqlConnectionStringBuilder.cs
- NetSectionGroup.cs
- ScriptingWebServicesSectionGroup.cs
- BitmapEffectrendercontext.cs
- NativeMethods.cs
- PageCatalogPart.cs
- DocumentSchemaValidator.cs
- Int64KeyFrameCollection.cs
- HttpFileCollection.cs