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