14 references to Normaliz
System.Private.CoreLib (14)
src\libraries\System.Private.CoreLib\src\System\Globalization\IdnMapping.Nls.cs (10)
21int length = Interop.Normaliz.IdnToAscii(flags, unicode, count, Span<char>.Empty, 0); 46int length = Interop.Normaliz.IdnToAscii(flags, unicode, unicode.Length, output, output.Length); 63int length = Interop.Normaliz.IdnToAscii(flags, unicode, unicode.Length, Span<char>.Empty, 0); 76int actualLength = Interop.Normaliz.IdnToAscii(flags, unicode, unicode.Length, destination, destination.Length); 95int length = Interop.Normaliz.IdnToUnicode(flags, ascii, count, Span<char>.Empty, 0); 120int length = Interop.Normaliz.IdnToUnicode(flags, ascii, ascii.Length, output, output.Length); 137int length = Interop.Normaliz.IdnToUnicode(flags, ascii, ascii.Length, Span<char>.Empty, 0); 150int actualLength = Interop.Normaliz.IdnToUnicode(flags, ascii, ascii.Length, destination, destination.Length); 165(AllowUnassigned ? Interop.Normaliz.IDN_ALLOW_UNASSIGNED : 0) | 166(UseStd3AsciiRules ? Interop.Normaliz.IDN_USE_STD3_ASCII_RULES : 0);
src\libraries\System.Private.CoreLib\src\System\Globalization\Normalization.Nls.cs (4)
24result = Interop.Normaliz.IsNormalizedString(normalizationForm, pInput, source.Length); 65realLength = Interop.Normaliz.NormalizeString(normalizationForm, pInput, strInput.Length, pDest, buffer.Length); 136realLength = Interop.Normaliz.NormalizeString(normalizationForm, pInput, source.Length, pDest, destination.Length); 179realLength = Interop.Normaliz.NormalizeString(normalizationForm, pInput, source.Length, null, 0);