10 references to BestFitMappingEnable
Microsoft.CodeAnalysis (2)
Symbols\PlatformInvokeInformation.cs (2)
134case MethodImportAttributes.BestFitMappingEnable: 237result |= MethodImportAttributes.BestFitMappingEnable;
Microsoft.CodeAnalysis.CSharp.Emit3.UnitTests (3)
Attributes\AttributeTests_WellKnownAttributes.cs (3)
2713MethodImportAttributes.BestFitMappingEnable | 2740MethodImportAttributes.BestFitMappingEnable | 2890new { attr = MakeDllImport(bestFitMapping: true), expected = MethodImportAttributes.CallingConventionWinApi | MethodImportAttributes.BestFitMappingEnable}, // M23
Microsoft.CodeAnalysis.VisualBasic.Emit.UnitTests (3)
Attributes\AttributeTests_WellKnownAttributes.vb (3)
1518MethodImportAttributes.BestFitMappingEnable Or 1546MethodImportAttributes.BestFitMappingEnable Or 1907New With {.n = 23, .attr = MakeDllImport(bestFitMapping:=True), .expected = MethodImportAttributes.CallingConventionWinApi Or MethodImportAttributes.BestFitMappingEnable},
System.Reflection.Emit (1)
System\Reflection\Emit\PseudoCustomAttributesData.cs (1)
73importAttributes |= MethodImportAttributes.BestFitMappingEnable;
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\MethodBase\Ecma\EcmaMethodDecoder.cs (1)
148BestFitMapping = (a & MethodImportAttributes.BestFitMappingMask) == MethodImportAttributes.BestFitMappingEnable,