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