10 references to StringFormatMask
ILAssembler (3)
GrammarVisitor.cs (3)
1025
return new((new(TypeAttributes.AnsiClass, TypeAttributes.
StringFormatMask
), null, false));
1027
return new((new(TypeAttributes.AutoClass, TypeAttributes.
StringFormatMask
), null, false));
1029
return new((new(TypeAttributes.UnicodeClass, TypeAttributes.
StringFormatMask
), null, false));
ILCompiler.TypeSystem (1)
parent\parent\Common\TypeSystem\Ecma\EcmaType.cs (1)
676
return (PInvokeStringFormat)(_typeDefinition.Attributes & TypeAttributes.
StringFormatMask
);
Microsoft.CodeAnalysis (1)
MetadataReader\TypeAttributesExtensions.cs (1)
35
switch (flags & TypeAttributes.
StringFormatMask
)
System.Private.CoreLib (4)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Type.cs (3)
117
public bool IsAnsiClass => (GetAttributeFlagsImpl() & TypeAttributes.
StringFormatMask
) == TypeAttributes.AnsiClass;
118
public bool IsAutoClass => (GetAttributeFlagsImpl() & TypeAttributes.
StringFormatMask
) == TypeAttributes.AutoClass;
119
public bool IsUnicodeClass => (GetAttributeFlagsImpl() & TypeAttributes.
StringFormatMask
) == TypeAttributes.UnicodeClass;
System\Reflection\Runtime\TypeInfos\RuntimeNamedTypeInfo.cs (1)
117
switch (attributes & TypeAttributes.
StringFormatMask
)
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Types\RoDefinitionType.cs (1)
167
CharSet charSet = (attributes & TypeAttributes.
StringFormatMask
) switch