Home
last modified time | relevance | path

Searched refs:CreateWhitespace (Results 1 – 25 of 55) sorted by relevance

123

/dports/lang/mono/mono-5.10.1.57/mcs/class/System.XML/Test/System.Xml/
H A DXmlWhiteSpaceTests.cs36 whitespace = document.CreateWhitespace ("\r\n"); in GetReady()
46 whitespace = doc2.CreateWhitespace ("\r\n\t "); in InnerAndOuterXml()
65 broken = document.CreateWhitespace ("black"); in XmlWhitespaceBadConstructor()
H A DXmlNodeTests.cs238 root.AppendChild (doc.CreateWhitespace (" ")); in Normalize2()
H A DXmlDocumentTests.cs997 d2.DocumentElement.AppendChild (d2.CreateWhitespace (" ")); in PreserveWhitespace2()
/dports/devel/msbuild/msbuild-0.06/src/Build/Construction/
H A DProjectElementContainer.cs496 …var newWhitespaceNode = XmlDocument.CreateWhitespace(referenceSibling.XmlElement.PreviousSibling.V… in AddToXml()
513 … var newWhitespaceNode = XmlDocument.CreateWhitespace(child.XmlElement.PreviousSibling.Value); in AddToXml()
533 …var leadingWhitespaceNode = XmlDocument.CreateWhitespace(Environment.NewLine + parentIndentation +… in AddToXml()
534 …var trailingWhiteSpaceNode = XmlDocument.CreateWhitespace(Environment.NewLine + parentIndentation); in AddToXml()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/System.Configuration/
H A DConfigXmlDocument.cs86 public override XmlWhitespace CreateWhitespace (string data) in CreateWhitespace() method in System.Configuration.ConfigXmlDocument
88 return base.CreateWhitespace (data); in CreateWhitespace()
/dports/devel/msbuild/msbuild-0.06/src/Build/ElementLocation/
H A DXmlDocumentWithLocation.cs218 public override XmlWhitespace CreateWhitespace(string text) in CreateWhitespace() method in Microsoft.Build.Construction.XmlDocumentWithLocation
226 return base.CreateWhitespace(interned); in CreateWhitespace()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Private.Xml/src/System/Xml/Dom/
H A DXmlWhitespace.cs90 return OwnerDocument.CreateWhitespace(Data); in CloneNode()
H A DXmlDocument.cs822 public virtual XmlWhitespace CreateWhitespace(string text) in CreateWhitespace() method in System.Xml.XmlDocument
948 newNode = CreateWhitespace(node.Value); in ImportNodeInternal()
1096 return CreateWhitespace(string.Empty); in CreateNode()
H A DDocumentXmlWriter.cs317 XmlNode node = _document.CreateWhitespace(text); in WriteWhitespace()
H A DXmlLoader.cs192 node = _doc.CreateWhitespace(r.Value); in LoadNode()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Xml/System/Xml/Dom/
H A DXmlWhitespace.cs79 return OwnerDocument.CreateWhitespace( Data ); in CloneNode()
H A DXmlDocument.cs728 public virtual XmlWhitespace CreateWhitespace( string text ) { in CreateWhitespace() method in System.Xml.XmlDocument
840 newNode = CreateWhitespace( node.Value ); in ImportNodeInternal()
973 return CreateWhitespace( string.Empty ); in CreateNode()
H A DDocumentXmlWriter.cs275 XmlNode node = document.CreateWhitespace(text); in WriteWhitespace()
H A DXmlLoader.cs168 node = doc.CreateWhitespace( r.Value ); in LoadNode()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Configuration.ConfigurationManager/src/System/Configuration/
H A DConfigXmlDocument.cs124 public override XmlWhitespace CreateWhitespace(String data) in CreateWhitespace() method in System.Configuration.ConfigXmlDocument
H A DErrorInfoXmlDocument.cs117 public override XmlWhitespace CreateWhitespace(string data) in CreateWhitespace() method in System.Configuration.ErrorInfoXmlDocument
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Configuration/System/Configuration/
H A DErrorInfoXmlDocument.cs105 public override XmlWhitespace CreateWhitespace(String data) { in CreateWhitespace() method in System.Configuration.ErrorInfoXmlDocument
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/sys/system/configuration/
H A DConfigXmlDocument.cs114 public override XmlWhitespace CreateWhitespace(String data) { in CreateWhitespace() method in System.Configuration.ConfigXmlDocument
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/
H A DCanonicalXmlDocument.cs89 public override XmlWhitespace CreateWhitespace(string prefix) in CreateWhitespace() method in System.Security.Cryptography.Xml.CanonicalXmlDocument
/dports/lang/mono/mono-5.10.1.57/external/Newtonsoft.Json/Src/Newtonsoft.Json/Converters/
H A DXmlNodeConverter.cs70 public IXmlNode CreateWhitespace(string text) in CreateWhitespace() method in Newtonsoft.Json.Converters.XmlDocumentWrapper
72 return new XmlNodeWrapper(_document.CreateWhitespace(text)); in CreateWhitespace()
285 IXmlNode CreateWhitespace(string text); in CreateWhitespace() method
399 public IXmlNode CreateWhitespace(string text) in CreateWhitespace() method in Newtonsoft.Json.Converters.XDocumentWrapper
1149 currentNode.AppendChild(document.CreateWhitespace(reader.Value.ToString())); in DeserializeValue()
/dports/irc/smuxi/smuxi-1.1/lib/Newtonsoft.Json/Src/Newtonsoft.Json/Converters/
H A DXmlNodeConverter.cs70 public IXmlNode CreateWhitespace(string text) in CreateWhitespace() method in Newtonsoft.Json.Converters.XmlDocumentWrapper
72 return new XmlNodeWrapper(_document.CreateWhitespace(text)); in CreateWhitespace()
285 IXmlNode CreateWhitespace(string text); in CreateWhitespace() method
399 public IXmlNode CreateWhitespace(string text) in CreateWhitespace() method in Newtonsoft.Json.Converters.XDocumentWrapper
1149 currentNode.AppendChild(document.CreateWhitespace(reader.Value.ToString())); in DeserializeValue()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Private.Xml/tests/XmlDocument/XmlNodeTests/InsertTests/
H A DTestHelper.cs34 return doc.CreateWhitespace(@" "); in CreateNode()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Private.Xml/tests/XmlDocument/XmlDocumentTests/
H A DImportNodeTests.cs53 var nodeToImport = tempDoc.CreateWhitespace(whitespace); in ImportWhiteSpace()
/dports/devel/newtonsoft-json/Newtonsoft.Json-9.0.1/Src/Newtonsoft.Json/Converters/
H A DXmlNodeConverter.cs70 public IXmlNode CreateWhitespace(string text) in CreateWhitespace() method in Newtonsoft.Json.Converters.XmlDocumentWrapper
72 return new XmlNodeWrapper(_document.CreateWhitespace(text)); in CreateWhitespace()
358 IXmlNode CreateWhitespace(string text); in CreateWhitespace() method
520 public IXmlNode CreateWhitespace(string text) in CreateWhitespace() method in Newtonsoft.Json.Converters.XDocumentWrapper
1494 currentNode.AppendChild(document.CreateWhitespace(reader.Value.ToString())); in DeserializeValue()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Private.Xml/tests/XmlDocument/XmlNodeTests/
H A DRemoveChildTests.cs412 return doc.CreateWhitespace(@" "); in CreateNode()

123