Home
last modified time | relevance | path

Searched refs:highChar (Results 1 – 25 of 133) sorted by relevance

123456

/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Runtime.Serialization/System/Text/
H A DSurrogateChar.cs12 char highChar; field
30 this.highChar = (char)((((ch - MinValue) >> 10) & mask) + surHighMin); in SurrogateChar()
33 public SurrogateChar(char lowChar, char highChar) in SurrogateChar()
38 if (highChar < surHighMin || highChar > surHighMax) in SurrogateChar()
39 …or(new ArgumentException(SR.GetString(SR.XmlInvalidHighSurrogate, ((int)highChar).ToString("X", Cu… in SurrogateChar()
42 this.highChar = highChar; in SurrogateChar()
46 public char HighChar { get { return highChar; } }
52 return (lowChar - surLowMin) | ((highChar - surHighMin) << 10) + MinValue;
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Private.DataContractSerialization/src/System/Text/
H A DSurrogateChar.cs35 public SurrogateChar(char lowChar, char highChar) in SurrogateChar()
40 if (highChar < surHighMin || highChar > surHighMax) in SurrogateChar()
41 …Format(SR.XmlInvalidHighSurrogate, ((int)highChar).ToString("X", CultureInfo.InvariantCulture)), n… in SurrogateChar()
44 _highChar = highChar; in SurrogateChar()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Private.Xml/src/System/Xml/Core/
H A DXmlTextEncoder.cs101 internal void WriteSurrogateChar(char lowChar, char highChar) in WriteSurrogateChar() argument
104 !XmlCharType.IsHighSurrogate(highChar)) in WriteSurrogateChar()
106 throw XmlConvert.CreateInvalidSurrogatePairException(lowChar, highChar); in WriteSurrogateChar()
109 _textWriter.Write(highChar); in WriteSurrogateChar()
236 internal void WriteSurrogateCharEntity(char lowChar, char highChar) in WriteSurrogateCharEntity() argument
239 !XmlCharType.IsHighSurrogate(highChar)) in WriteSurrogateCharEntity()
241 throw XmlConvert.CreateInvalidSurrogatePairException(lowChar, highChar); in WriteSurrogateCharEntity()
243 int surrogateChar = XmlCharType.CombineSurrogateChar(lowChar, highChar); in WriteSurrogateCharEntity()
247 _attrValue.Append(highChar); in WriteSurrogateCharEntity()
H A DXmlWrappingWriterAsync.cs97 public override Task WriteSurrogateCharEntityAsync(char lowChar, char highChar) in WriteSurrogateCharEntityAsync() argument
99 return writer.WriteSurrogateCharEntityAsync(lowChar, highChar); in WriteSurrogateCharEntityAsync()
H A DXmlWrappingWriter.cs117 public override void WriteSurrogateCharEntity(char lowChar, char highChar) in WriteSurrogateCharEntity() argument
119 writer.WriteSurrogateCharEntity(lowChar, highChar); in WriteSurrogateCharEntity()
H A DXmlAsyncCheckWriter.cs156 public override void WriteSurrogateCharEntity(char lowChar, char highChar) in WriteSurrogateCharEntity() argument
159 _coreWriter.WriteSurrogateCharEntity(lowChar, highChar); in WriteSurrogateCharEntity()
476 public override Task WriteSurrogateCharEntityAsync(char lowChar, char highChar) in WriteSurrogateCharEntityAsync() argument
479 var task = _coreWriter.WriteSurrogateCharEntityAsync(lowChar, highChar); in WriteSurrogateCharEntityAsync()
H A DXmlRawWriterAsync.cs122 public override Task WriteSurrogateCharEntityAsync(char lowChar, char highChar) in WriteSurrogateCharEntityAsync() argument
124 return WriteStringAsync(new string(new char[] { lowChar, highChar })); in WriteSurrogateCharEntityAsync()
H A DXmlRawWriter.cs156 public override void WriteSurrogateCharEntity(char lowChar, char highChar) in WriteSurrogateCharEntity() argument
158 WriteString(new string(new char[] { lowChar, highChar })); in WriteSurrogateCharEntity()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Xml/System/Xml/Core/
H A DXmlTextEncoder.cs90 internal void WriteSurrogateChar( char lowChar, char highChar ) { in WriteSurrogateChar() argument
92 !XmlCharType.IsHighSurrogate( highChar ) ) { in WriteSurrogateChar()
93 throw XmlConvert.CreateInvalidSurrogatePairException( lowChar, highChar ); in WriteSurrogateChar()
96 textWriter.Write( highChar ); in WriteSurrogateChar()
203 internal void WriteSurrogateCharEntity( char lowChar, char highChar ) { in WriteSurrogateCharEntity() argument
205 !XmlCharType.IsHighSurrogate( highChar ) ) { in WriteSurrogateCharEntity()
206 throw XmlConvert.CreateInvalidSurrogatePairException( lowChar, highChar ); in WriteSurrogateCharEntity()
209 int surrogateChar = XmlCharType.CombineSurrogateChar( lowChar, highChar ); in WriteSurrogateCharEntity()
212 attrValue.Append( highChar ); in WriteSurrogateCharEntity()
H A DXmlWrappingWriterAsync.cs78 public override Task WriteSurrogateCharEntityAsync(char lowChar, char highChar) { in WriteSurrogateCharEntityAsync() argument
79 return writer.WriteSurrogateCharEntityAsync(lowChar, highChar); in WriteSurrogateCharEntityAsync()
H A DXmlWrappingWriter.cs138 public override void WriteSurrogateCharEntity(char lowChar, char highChar) { in WriteSurrogateCharEntity() argument
139 writer.WriteSurrogateCharEntity(lowChar, highChar); in WriteSurrogateCharEntity()
H A DXmlAsyncCheckWriter.cs131 public override void WriteSurrogateCharEntity(char lowChar, char highChar) { in WriteSurrogateCharEntity() argument
133 coreWriter.WriteSurrogateCharEntity(lowChar, highChar); in WriteSurrogateCharEntity()
402 public override Task WriteSurrogateCharEntityAsync(char lowChar, char highChar) { in WriteSurrogateCharEntityAsync() argument
404 var task = coreWriter.WriteSurrogateCharEntityAsync(lowChar, highChar); in WriteSurrogateCharEntityAsync()
/dports/devel/msbuild/msbuild-0.06/src/Shared/Compat/
H A DXmlTextEncoder.cs90 internal void WriteSurrogateChar( char lowChar, char highChar ) { in WriteSurrogateChar() argument
92 !XmlCharType.IsHighSurrogate( highChar ) ) { in WriteSurrogateChar()
93 throw CreateInvalidSurrogatePairException( lowChar, highChar ); in WriteSurrogateChar()
96 textWriter.Write( highChar ); in WriteSurrogateChar()
203 internal void WriteSurrogateCharEntity( char lowChar, char highChar ) { in WriteSurrogateCharEntity() argument
205 !XmlCharType.IsHighSurrogate( highChar ) ) { in WriteSurrogateCharEntity()
206 throw CreateInvalidSurrogatePairException( lowChar, highChar ); in WriteSurrogateCharEntity()
209 int surrogateChar = XmlCharType.CombineSurrogateChar( lowChar, highChar ); in WriteSurrogateCharEntity()
212 attrValue.Append( highChar ); in WriteSurrogateCharEntity()
H A DXmlCharType.cs526 public bool IsNCNameSurrogateChar(char lowChar, char highChar) { in XmlCharType()
527 return InRange( highChar, s_NCNameSurHighStart, s_NCNameSurHighEnd ) && in XmlCharType()
531 public bool IsNCNameHighSurrogateChar( char highChar ) { in XmlCharType()
532 return InRange( highChar, s_NCNameSurHighStart, s_NCNameSurHighEnd ); in XmlCharType()
558 public bool IsNameSurrogateChar(char lowChar, char highChar) { in XmlCharType()
559 return IsNCNameSurrogateChar(lowChar, highChar); in XmlCharType()
662 internal static int CombineSurrogateChar( int lowChar, int highChar ) { in XmlCharType()
663 return ( lowChar - SurLowStart ) | ( ( highChar - SurHighStart ) << 10 ) + 0x10000; in XmlCharType()
666 … internal static void SplitSurrogateChar( int combinedChar, out char lowChar, out char highChar ) { in XmlCharType()
669 highChar = (char)( SurHighStart + v / 1024 ); in XmlCharType()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Xml/System/Xml/
H A DXmlCharType.cs527 public bool IsNCNameSurrogateChar(char lowChar, char highChar) { in XmlCharType()
528 return InRange( highChar, s_NCNameSurHighStart, s_NCNameSurHighEnd ) && in XmlCharType()
532 public bool IsNCNameHighSurrogateChar( char highChar ) { in XmlCharType()
533 return InRange( highChar, s_NCNameSurHighStart, s_NCNameSurHighEnd ); in XmlCharType()
559 public bool IsNameSurrogateChar(char lowChar, char highChar) { in XmlCharType()
560 return IsNCNameSurrogateChar(lowChar, highChar); in XmlCharType()
663 internal static int CombineSurrogateChar( int lowChar, int highChar ) { in XmlCharType()
664 return ( lowChar - SurLowStart ) | ( ( highChar - SurHighStart ) << 10 ) + 0x10000; in XmlCharType()
667 … internal static void SplitSurrogateChar( int combinedChar, out char lowChar, out char highChar ) { in XmlCharType()
670 highChar = (char)( SurHighStart + v / 1024 ); in XmlCharType()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/Common/src/System/Xml/
H A DXmlCharType.cs511 public bool IsNCNameSurrogateChar(char lowChar, char highChar) in XmlCharType()
513 return InRange(highChar, s_NCNameSurHighStart, s_NCNameSurHighEnd) && in XmlCharType()
517 public bool IsNCNameHighSurrogateChar(char highChar) in XmlCharType()
519 return InRange(highChar, s_NCNameSurHighStart, s_NCNameSurHighEnd); in XmlCharType()
540 public bool IsNameSurrogateChar(char lowChar, char highChar) in XmlCharType()
542 return IsNCNameSurrogateChar(lowChar, highChar); in XmlCharType()
636 internal static int CombineSurrogateChar(int lowChar, int highChar) in XmlCharType()
638 return (lowChar - SurLowStart) | ((highChar - SurHighStart) << 10) + 0x10000; in XmlCharType()
H A DXmlRawWriter.cs151 public override void WriteSurrogateCharEntity(char lowChar, char highChar) in WriteSurrogateCharEntity() argument
153 WriteString(new string(new char[] { lowChar, highChar })); in WriteSurrogateCharEntity()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Private.Xml/src/System/Xml/
H A DXmlCharType.cs228 internal static int CombineSurrogateChar(int lowChar, int highChar) in CombineSurrogateChar()
230 return (lowChar - SurLowStart) | ((highChar - SurHighStart) << 10) + 0x10000; in CombineSurrogateChar()
233 … internal static void SplitSurrogateChar(int combinedChar, out char lowChar, out char highChar) in SplitSurrogateChar()
237 highChar = (char)(SurHighStart + v / 1024); in SplitSurrogateChar()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.IdentityModel/System/IdentityModel/
H A DDelegatingXmlDictionaryWriter.cs362 public override void WriteSurrogateCharEntity(char lowChar, char highChar) in WriteSurrogateCharEntity() argument
364 _innerWriter.WriteSurrogateCharEntity(lowChar, highChar); in WriteSurrogateCharEntity()
367 _tracingWriter.WriteSurrogateCharEntity(lowChar, highChar); in WriteSurrogateCharEntity()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/Common/tests/System/Xml/XmlCoreTest/
H A DCustomWriter.cs110 public override void WriteSurrogateCharEntity(char lowChar, char highChar) in WriteSurrogateCharEntity() argument
112 _writer.WriteSurrogateCharEntity(lowChar, highChar); in WriteSurrogateCharEntity()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Data.SqlXml/System/Xml/Xsl/Runtime/
H A DXmlRawWriterWrapper.cs90 public override void WriteSurrogateCharEntity(char lowChar, char highChar) { in WriteSurrogateCharEntity() argument
91 this.wrapped.WriteSurrogateCharEntity(lowChar, highChar); in WriteSurrogateCharEntity()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Private.Xml/src/System/Xml/Xsl/Runtime/
H A DXmlRawWriterWrapper.cs105 public override void WriteSurrogateCharEntity(char lowChar, char highChar) in WriteSurrogateCharEntity() argument
107 _wrapped.WriteSurrogateCharEntity(lowChar, highChar); in WriteSurrogateCharEntity()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.ServiceModel.Web/System/ServiceModel/Channels/
H A DJavascriptXmlWriterWrapper.cs175 public override void WriteSurrogateCharEntity(char lowChar, char highChar) in WriteSurrogateCharEntity() argument
177 this.xmlJsonWriter.WriteSurrogateCharEntity(lowChar, highChar); in WriteSurrogateCharEntity()
/dports/lang/mono/mono-5.10.1.57/external/api-doc-tools/mdoc/Mono.Documentation/
H A DXhtmlWriter.cs223 public override void WriteSurrogateCharEntity (char lowChar, char highChar) in WriteSurrogateCharEntity() argument
225 writer.WriteSurrogateCharEntity (lowChar, highChar); in WriteSurrogateCharEntity()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Runtime.Serialization/System/Xml/
H A DXmlDelegatedWriter.cs189 public override void WriteSurrogateCharEntity(char lowChar, char highChar) in WriteSurrogateCharEntity() argument
191 writer.WriteSurrogateCharEntity(lowChar, highChar); in WriteSurrogateCharEntity()

123456