19 references to _IUnicodeCharactersStatics
PresentationFramework (19)
MS\Internal\WindowsRuntime\Generated\Windows.Data.Text.cs (19)
166
private static WeakLazy<
_IUnicodeCharactersStatics
> _instance = new WeakLazy<
_IUnicodeCharactersStatics
>();
170
public static uint GetCodepointFromSurrogatePair(uint highSurrogate, uint lowSurrogate) =>
_IUnicodeCharactersStatics
.Instance.GetCodepointFromSurrogatePair(highSurrogate, lowSurrogate);
172
public static void GetSurrogatePairFromCodepoint(uint codepoint, out char highSurrogate, out char lowSurrogate) =>
_IUnicodeCharactersStatics
.Instance.GetSurrogatePairFromCodepoint(codepoint, out highSurrogate, out lowSurrogate);
174
public static bool IsHighSurrogate(uint codepoint) =>
_IUnicodeCharactersStatics
.Instance.IsHighSurrogate(codepoint);
176
public static bool IsLowSurrogate(uint codepoint) =>
_IUnicodeCharactersStatics
.Instance.IsLowSurrogate(codepoint);
178
public static bool IsSupplementary(uint codepoint) =>
_IUnicodeCharactersStatics
.Instance.IsSupplementary(codepoint);
180
public static bool IsNoncharacter(uint codepoint) =>
_IUnicodeCharactersStatics
.Instance.IsNoncharacter(codepoint);
182
public static bool IsWhitespace(uint codepoint) =>
_IUnicodeCharactersStatics
.Instance.IsWhitespace(codepoint);
184
public static bool IsAlphabetic(uint codepoint) =>
_IUnicodeCharactersStatics
.Instance.IsAlphabetic(codepoint);
186
public static bool IsCased(uint codepoint) =>
_IUnicodeCharactersStatics
.Instance.IsCased(codepoint);
188
public static bool IsUppercase(uint codepoint) =>
_IUnicodeCharactersStatics
.Instance.IsUppercase(codepoint);
190
public static bool IsLowercase(uint codepoint) =>
_IUnicodeCharactersStatics
.Instance.IsLowercase(codepoint);
192
public static bool IsIdStart(uint codepoint) =>
_IUnicodeCharactersStatics
.Instance.IsIdStart(codepoint);
194
public static bool IsIdContinue(uint codepoint) =>
_IUnicodeCharactersStatics
.Instance.IsIdContinue(codepoint);
196
public static bool IsGraphemeBase(uint codepoint) =>
_IUnicodeCharactersStatics
.Instance.IsGraphemeBase(codepoint);
198
public static bool IsGraphemeExtend(uint codepoint) =>
_IUnicodeCharactersStatics
.Instance.IsGraphemeExtend(codepoint);
200
public static UnicodeNumericType GetNumericType(uint codepoint) =>
_IUnicodeCharactersStatics
.Instance.GetNumericType(codepoint);
202
public static UnicodeGeneralCategory GetGeneralCategory(uint codepoint) =>
_IUnicodeCharactersStatics
.Instance.GetGeneralCategory(codepoint);