19 references to _IUnicodeCharactersStatics
PresentationFramework (19)
MS\Internal\WindowsRuntime\Generated\Windows.Data.Text.cs (19)
173
private static WeakLazy<
_IUnicodeCharactersStatics
> _instance = new WeakLazy<
_IUnicodeCharactersStatics
>();
177
public static uint GetCodepointFromSurrogatePair(uint highSurrogate, uint lowSurrogate) =>
_IUnicodeCharactersStatics
.Instance.GetCodepointFromSurrogatePair(highSurrogate, lowSurrogate);
179
public static void GetSurrogatePairFromCodepoint(uint codepoint, out char highSurrogate, out char lowSurrogate) =>
_IUnicodeCharactersStatics
.Instance.GetSurrogatePairFromCodepoint(codepoint, out highSurrogate, out lowSurrogate);
181
public static bool IsHighSurrogate(uint codepoint) =>
_IUnicodeCharactersStatics
.Instance.IsHighSurrogate(codepoint);
183
public static bool IsLowSurrogate(uint codepoint) =>
_IUnicodeCharactersStatics
.Instance.IsLowSurrogate(codepoint);
185
public static bool IsSupplementary(uint codepoint) =>
_IUnicodeCharactersStatics
.Instance.IsSupplementary(codepoint);
187
public static bool IsNoncharacter(uint codepoint) =>
_IUnicodeCharactersStatics
.Instance.IsNoncharacter(codepoint);
189
public static bool IsWhitespace(uint codepoint) =>
_IUnicodeCharactersStatics
.Instance.IsWhitespace(codepoint);
191
public static bool IsAlphabetic(uint codepoint) =>
_IUnicodeCharactersStatics
.Instance.IsAlphabetic(codepoint);
193
public static bool IsCased(uint codepoint) =>
_IUnicodeCharactersStatics
.Instance.IsCased(codepoint);
195
public static bool IsUppercase(uint codepoint) =>
_IUnicodeCharactersStatics
.Instance.IsUppercase(codepoint);
197
public static bool IsLowercase(uint codepoint) =>
_IUnicodeCharactersStatics
.Instance.IsLowercase(codepoint);
199
public static bool IsIdStart(uint codepoint) =>
_IUnicodeCharactersStatics
.Instance.IsIdStart(codepoint);
201
public static bool IsIdContinue(uint codepoint) =>
_IUnicodeCharactersStatics
.Instance.IsIdContinue(codepoint);
203
public static bool IsGraphemeBase(uint codepoint) =>
_IUnicodeCharactersStatics
.Instance.IsGraphemeBase(codepoint);
205
public static bool IsGraphemeExtend(uint codepoint) =>
_IUnicodeCharactersStatics
.Instance.IsGraphemeExtend(codepoint);
207
public static UnicodeNumericType GetNumericType(uint codepoint) =>
_IUnicodeCharactersStatics
.Instance.GetNumericType(codepoint);
209
public static UnicodeGeneralCategory GetGeneralCategory(uint codepoint) =>
_IUnicodeCharactersStatics
.Instance.GetGeneralCategory(codepoint);