10 references to StringFormatMask
Microsoft.CodeAnalysis (1)
MetadataReader\TypeAttributesExtensions.cs (1)
35
switch (flags & TypeAttributes.
StringFormatMask
)
Microsoft.CodeAnalysis.CSharp.Emit3.UnitTests (3)
Attributes\AttributeTests_StructLayout.cs (2)
160
const TypeAttributes typeDefMask = TypeAttributes.
StringFormatMask
| TypeAttributes.LayoutMask;
814
const TypeAttributes typeDefMask = TypeAttributes.
StringFormatMask
| TypeAttributes.LayoutMask;
Attributes\AttributeTests_WellKnownAttributes.cs (1)
3557
var actual = row.Attributes & TypeAttributes.
StringFormatMask
;
Microsoft.CodeAnalysis.Test.Utilities (1)
Platform\Custom\MetadataSignatureHelper.cs (1)
376
switch (attributes & TypeAttributes.
StringFormatMask
)
System.Private.CoreLib (4)
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;
src\System\Reflection\RuntimeCustomAttributeData.cs (1)
2280
switch (type.Attributes & TypeAttributes.
StringFormatMask
)
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Types\RoDefinitionType.cs (1)
167
CharSet charSet = (attributes & TypeAttributes.
StringFormatMask
) switch